-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[project]
name = "BasisLib"
description = "Your favourite Equivariant basis functions"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [{name = "The BasisLib Authors", email="[email protected]"}]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
]
keywords = [
"equivariance", "equivariant", "invariance", "invariant",
"E(3)", "SE(3)", "O(3)", "SO(3)",
"Euclidean", "Orthogonal", "group",
"translation", "translational",
"rotation", "rotational",
"roto-translation", "roto-translational",
"reflection",
"neural network", "machine learning", "deep learning",
]
# pip dependencies of the project
dependencies = [
"absl-py",
"numpy",
"sympy",
"more_itertools",
"etils[epath]",
]
# This is set automatically by flit using `e3x.__version__`
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/atomicarchitects/BasisLib"
repository = "https://github.com/atomicarchitects/BasisLib"
# Other: `documentation`, `changelog`
[build-system]
requires = ["flit_core >=3.5,<4"]
build-backend = "flit_core.buildapi"