forked from netket/netket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (54 loc) · 1.72 KB
/
setup.py
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
from setuptools import setup, find_packages
DEV_DEPENDENCIES = [
"pytest>=6",
"pytest-xdist>=2",
"coverage>=5",
"pytest-cov>= 2.10.1",
"python-igraph",
"pre-commit",
"black==20.8b1",
]
MPI_DEPENDENCIES = ["mpi4py>=3.0.1", "mpi4jax>=0.2.11"]
TENSORBOARD_DEPENDENCIES = ["tensorboardx>=2.0.0"]
BASE_DEPENDENCIES = [
"numpy>=1.18",
"scipy>=1.5.2",
"tqdm>=4.56.2",
"numba>=0.52.0",
"networkx>=2.4",
"jax>=0.2.9",
"jaxlib>=0.1.57",
"flax>=0.3.0",
"orjson>=3.4",
"optax>=0.0.2",
]
setup(
name="netket",
author="Giuseppe Carleo et al.",
url="http://github.com/netket/netket",
author_email="[email protected]",
license="Apache 2.0",
summmary="Netket : Machine Learning techniques for many-body quantum systems.",
long_description="""NetKet is an open-source project delivering cutting-edge
methods for the study of many-body quantum systems with artificial
neural networks and machine learning techniques.""",
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Topic :: Scientific/Engineering :: Physics",
],
packages=find_packages(),
install_requires=BASE_DEPENDENCIES,
python_requires=">=3.7",
extras_require={
"dev": DEV_DEPENDENCIES,
"mpi": MPI_DEPENDENCIES,
"tensorboard": TENSORBOARD_DEPENDENCIES,
"all": MPI_DEPENDENCIES + DEV_DEPENDENCIES + TENSORBOARD_DEPENDENCIES,
},
)