-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
40 lines (36 loc) · 867 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",
"numpy",
"ordered-set",
"typing",
"chex",
"jax",
"jaxlib",
"pandas",
"ml_collections",
"pyscf",
"tables",
'h5py==3.2.1',
'optax==0.0.9',
)
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',
)