-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
executable file
·69 lines (64 loc) · 1.35 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "symphony"
authors = [
{name = "Ameya Daigavane", email = "[email protected]"},
{name = "Song Kim", email = "[email protected]"},
{name = "Mario Geiger", email = "[email protected]"},
]
description = "Symphony"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["generative", "equivariant", "molecules"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"e3nn_jax",
"numpy",
"jax",
"flax",
"dm-haiku",
"jraph",
"clu==0.0.9",
"absl-py",
"chex",
"optax",
"scipy",
"tensorflow==2.13.0",
"rdkit",
"wandb",
"py3dmol",
"posebusters",
"sh",
"distrax",
"tensorflow-probability==0.21.0",
"mace-jax @ git+https://github.com/ACEsuit/mace-jax",
"nequip-jax @ git+https://github.com/mariogeiger/nequip-jax",
"allegro-jax @ git+https://github.com/mariogeiger/allegro-jax",
]
dynamic = ["version"]
[project.optional-dependencies]
plotting = ["pandas", "matplotlib", "plotly"]
[tool.setuptools.packages]
find = {}
[tool.black]
target-version = ['py39']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| .nox
)/
'''