-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
70 lines (60 loc) · 1.72 KB
/
pyproject.toml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "e3x"
description = "JAX-Library for building E(3)-equivariant deep learning architectures based on Flax."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [{name = "The e3x 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",
"etils[epath]",
"flax",
"jax",
"jaxtyping",
"more_itertools",
"numpy",
"sympy",
]
# This is set automatically by flit using `e3x.__version__`
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/google-research/e3x"
repository = "https://github.com/google-research/e3x"
# Other: `documentation`, `changelog`
[project.optional-dependencies]
# Development deps (unit tests, linting, formatting, documentation, ...)
# Installed through `pip install .[dev]`
dev = [
"pytest",
"pytest-xdist",
"pylint>=2.6.0",
"yapf",
"sphinx==7.2.6",
"sphinx-autodoc-typehints==1.25.2",
"sphinx-rtd-theme==2.0.0",
"nbsphinx==0.9.3",
"jupyter_sphinx==0.5.3",
"ipykernel==6.29.0",
"pypandoc_binary==1.12",
"matplotlib==3.4.3",
]
[build-system]
requires = ["flit_core >=3.5,<4"]
build-backend = "flit_core.buildapi"