-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
95 lines (84 loc) · 1.64 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "e3nn-jax"
version = "0.20.8"
description = "Equivariant convolutional neural networks for the group E(3) of 3 dimensional rotations, translations, and mirrors."
authors=[
{name="e3nn team", email="[email protected]"},
]
readme="README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9"
dependencies = [
"jax",
"jaxlib",
"sympy",
"numpy",
"attrs",
]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
homepage="https://e3nn-jax.readthedocs.io"
documentation="https://e3nn-jax.readthedocs.io"
repository="https://github.com/e3nn/e3nn-jax"
changelog="https://github.com/e3nn/e3nn-jax/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = [
"plotly",
"kaleido",
"jraph",
"flax",
"dm-haiku",
"equinox",
"optax",
"tqdm",
"pytest",
"nox",
"s2fft"
]
[tool.setuptools]
py-modules = ["e3nn_jax"]
[tool.setuptools.packages.find]
exclude = [
"misc*",
"docs*",
"examples*",
]
[tool.pydocstyle]
select = ["D415", "D403"]
[tool.black]
target-version = ['py311']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.coverage.run]
source = ["e3nn_jax"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise",
"except"
]
[tool.flake8]
ignore = ["E741", "E203", "W503", "E731", "E721"]
max-line-length = 127
max-complexity = 64
[tool.pytest.ini_options]
testpaths = ["tests"]