-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
80 lines (77 loc) · 2.2 KB
/
setup.py
File metadata and controls
80 lines (77 loc) · 2.2 KB
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="aae",
version="0.0.14",
author="kouhei nakaji",
author_email="kohei.nakaji@keio.jp",
description="Tool for approximately loading coefficients",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/konakaji/aae",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"attrs==20.3.0",
"bs4==0.0.1",
"certifi==2020.12.5",
"cffi==1.14.4",
"chardet==4.0.0",
"cryptography==3.3.1",
"cycler==0.10.0",
"Cython==0.29.21",
"decorator==4.4.2",
"dill==0.3.3",
"dlx==1.0.4",
"fastdtw==0.3.4",
"fastjsonschema==2.15.0",
"h5py==3.1.0",
"idna==2.10",
"inflection==0.5.1",
"joblib==1.0.0",
"jsonschema==3.2.0",
"kiwisolver==1.3.1",
"lxml==4.6.2",
"matplotlib==3.3.4",
"more-itertools==8.6.0",
"mpmath==1.1.0",
"multitasking==0.0.9",
"nest-asyncio==1.5.1",
"networkx==2.5",
"ntlm-auth==1.5.0",
"numpy==1.19.1",
"Pillow==8.1.0",
"ply==3.11",
"psutil==5.8.0",
"pybind11==2.6.2",
"pycparser==2.20",
"pyparsing==2.4.7",
"pyrsistent==0.17.3",
"python-constraint==1.4.0",
"python-dateutil==2.8.1",
"pytz==2021.1",
"qiskit==0.34.1",
"qiskit-aer==0.10.2",
"qiskit-aqua==0.9.5",
"qiskit-ibmq-provider==0.18.3",
"qiskit-ignis==0.7.0",
"qiskit-terra==0.19.1",
"Quandl==3.6.0",
"requests==2.25.1",
"requests-ntlm==1.1.0",
"scikit-learn==0.24.1",
"six==1.15.0",
"soupsieve==2.1",
"sympy==1.7.1",
"threadpoolctl==2.1.0",
"urllib3==1.26.3",
"websockets==8.1",
"qwrapper @ git+https://github.com/konakaji/qwrapper.git#egg=qwrapper"
],
python_requires='>=3.6',
)