-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
113 lines (95 loc) · 3.59 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# Copyright 2019 PIQuIL - All Rights Reserved.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os.path
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
version_file = {}
with open(os.path.join("qucumber", "__version__.py"), "r") as f:
exec(f.read(), version_file)
install_requires = [
"torch>=1.2,<2.1; sys_platform != 'win32'",
"tqdm>=4.23",
"numpy>=1.13",
"scipy>=1.3.3",
"matplotlib>=2.2",
]
# using a requirements.txt file for RTD dependencies
# since it runs out of memory when using `pip install -e .[rtd]` to install
# the dependencies for some reason
try:
with open(".build_tools/readthedocs/requirements.txt", "r") as reqs:
rtd_requires = [line.strip() for line in reqs.readlines()]
except FileNotFoundError:
rtd_requires = []
doc_requires = rtd_requires + ["sphinx_rtd_theme>=0.4.1", "sphinx-autobuild>=0.7.1"]
build_requires = ["setuptools>=40.0.0", "wheel>=0.31.1"]
test_requires = ["pytest>=3.7.1", "tox>=3.2.1"]
coverage_requires = test_requires + ["pytest-cov>=2.5.1"]
style_requires = [
"radon[flake8]>=4.3.2",
"black==19.3b0; python_version>='3.6'",
"flake8>=3.7.9",
"flake8-bugbear>=19.3.0",
"flake8-fixme>=1.1.1",
"invoke>=1.1.1",
"nbconvert>=5.3.1,<6.0",
]
travis_requires = build_requires + coverage_requires + style_requires
appveyor_requires = build_requires + test_requires
dev_requires = (
travis_requires
+ doc_requires
+ ["pre_commit>=1.10.5", "nbval>=0.9.1", "bump2version>=1.0.0"]
)
extras_require = {
"dev": dev_requires,
"test": test_requires,
"coverage": coverage_requires,
"style": style_requires,
"travis": travis_requires,
"appveyor": appveyor_requires,
"rtd": rtd_requires,
"docs": doc_requires,
}
setuptools.setup(
name="qucumber",
version=version_file["__version__"],
description="Neural Network Quantum State Tomography.",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Physics",
],
python_requires=">=3.6.1,<4",
install_requires=install_requires,
extras_require=extras_require,
include_package_data=True,
url="http://github.com/PIQuIL/QuCumber",
author="PIQuIL",
author_email="[email protected]",
license="Apache License 2.0",
packages=setuptools.find_packages(exclude=("examples", "docs", "tests")),
zip_safe=False,
)