forked from deepqmc/deepqmc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
77 lines (70 loc) · 1.9 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
[build-system]
requires = ['setuptools>=61', 'wheel']
build-backend = 'setuptools.build_meta'
[project]
name = 'deepqmc'
version = '1.0.1'
description = 'Deep-learning quantum Monte Carlo for electrons in real space'
authors = [
{name = "Jan Hermann", email = "[email protected]"},
{name = "Zeno Schätzle", email = "[email protected]"},
{name = "Péter Bernát Szabó", email = "[email protected]"},
]
readme = 'README.md'
license = {text = 'MIT'}
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: GPU :: NVIDIA CUDA',
'Intended Audience :: Science/Research',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
]
requires-python = ">=3.9"
dependencies = [
'chex<0.1.6', # TypeError: Subscripted generics cannot be used with class and instance checks
'dm-haiku',
'e3nn-jax',
'h5py',
'hydra-core',
'jax[cuda]',
'jaxtyping',
'jax-dataclasses',
'kfac-jax',
'pyscf',
'tensorboard',
'pyyaml',
'tqdm',
'uncertainties',
]
[project.optional-dependencies]
dev = [
'pytest',
'pytest-regressions',
'black',
'flake8',
'flake8-bugbear',
'flake8-comprehensions',
'flake8-quotes',
'isort',
'pep8-naming',
'pydocstyle',
]
[project.urls]
repository = 'https://github.com/deepqmc/deepqmc'
documentation = 'https://deepqmc.github.io'
[project.scripts]
deepqmc = 'deepqmc.app:cli'
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.yaml"]
[tool.black]
target-version = ['py37']
skip-string-normalization = true
preview = true