-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
76 lines (68 loc) · 1.7 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "mess-jax"
authors = [{ name = "Hatem Helal", email = "[email protected]" }]
description = "MESS: Modern Electronic Structure Simulations"
readme = "README.md"
license = { text = "MIT License" }
requires-python = ">=3.11"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"equinox",
"jax[cpu]",
"jaxtyping",
"more-itertools",
"optax",
"optimistix",
"pandas",
"periodictable",
"pyarrow",
"pyscf==2.6.2",
"py3Dmol",
"basis_set_exchange",
"sympy",
"importlib-resources",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"jupyter-book",
"tqdm",
"ipywidgets",
"pytest",
"pytest-benchmark",
"pre-commit",
"ruff",
"mdformat-gfm",
"seaborn",
]
[project.urls]
Website = "https://github.com/valence-labs/mess"
"Source Code" = "https://github.com/valence-labs/mess"
"Bug Tracker" = "https://github.com/valence-labs/mess/issues"
Documentation = "https://valence-labs.github.io/mess/"
[tool.setuptools]
include-package-data = true
[tool.setuptools_scm]
fallback_version = "dev"
[tool.pytest.ini_options]
addopts = "-s -v --durations=10"
filterwarnings = [
"error",
'ignore:Since PySCF\-2\.3, B3LYP \(and B3P86\) are changed.*:UserWarning',
'ignore:Function mol\.dumps drops attribute spin.*:UserWarning',
'ignore:scatter inputs have incompatible types.*:FutureWarning'
]
[tool.ruff]
extend-include = ["*.ipynb"]
[tool.ruff.lint]
select = ["E", "F"]
ignore = ["E741"]