-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
43 lines (38 loc) · 1013 Bytes
/
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "simgen"
version = "0.2.2"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [{ name = "Rokas Elijošius", email = "re344@cam.ac.uk" }]
dependencies = [
"ase>=3.23",
"einops>=0.6.1",
"fire>=0.5.0",
"frozendict>=2.3.7",
"typer>=0.13",
"decorator",
"mace-models>=0.1.2",
"mace-torch>=0.3.9",
"hydromace>=0.2",
"znframe",
"zndraw>=0.5.7",
]
# if in doubt, swithc >= to ==
[tool.setuptools.packages.find]
where = ["."]
include = ["simgen", "energy_model", "simgen_zndraw", "airss_baseline"]
namespaces = false
[project.scripts]
simgen = "simgen_zndraw.cli:cli_app"
[project.optional-dependencies]
all = [
"rdkit>=2023.9.4"
]
[tool.ruff]
lint.select = ["I", "UP", "F", "E", "W", "C90", "B", "A", "RUF"]
lint.ignore = ["E501", "B008", "E731"]
lint.exclude = ["airss_baseline/*", "energy_model/*", "simgen/sascrorer.py"]