-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
40 lines (37 loc) · 921 Bytes
/
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
# Copyright (c) ByteDance, Inc. and its affiliates.
# All rights reserved.
#
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
from setuptools import setup, find_packages
REQUIRED_PACKAGES = (
"absl-py",
'attrs',
"dataclasses",
"networkx",
"scipy==1.9.3",
"numpy",
"ordered-set",
"typing",
"chex==0.1.5",
"jax==0.2.26",
"jaxlib==0.1.75",
"pandas",
"ml_collections",
"pyscf",
"tables",
"h5py==3.2.1",
"optax==0.0.9",
"opt_einsum==3.3.0",
)
setup(
name="DeepSolid",
version="1.0",
description="A library combining solid quantum Monte Carlo and neural network.",
author='ByteDance',
author_email='[email protected]',
install_requires=REQUIRED_PACKAGES,
packages=find_packages(),
scripts=['bin/deepsolid'],
license='Apache 2.0',
)