-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
61 lines (56 loc) · 1.74 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
import os
from setuptools import find_packages, setup
def read_file(filename):
basepath = os.path.dirname(os.path.dirname(__file__))
filepath = os.path.join(basepath, filename)
if os.path.exists(filepath):
return open(filepath).read()
else:
return ""
setup(
name="quara",
version="0.3.0",
author="Takanori Sugiyama",
author_email="quara@googlegroups.com",
packages=find_packages(),
description='Quara, which stands for "Quantum Characterization", is an open-source library for characterizing elementary quantum operations.',
long_description=read_file("README.rst"),
url="https://github.com/tknrsgym/quara",
license="Apache License 2.0",
python_requires=">=3.7",
install_requires=[
"numpy",
"scipy",
"pandas",
"tqdm",
"plotly",
"plotly-express",
"joblib",
"reportlab==3.6.6",
"xhtml2pdf",
"psutil",
"kaleido>=0.1.0,<=0.1.0.post1",
"jinja2",
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Physics",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows :: Windows 10",
],
keywords=[
"quantum computing",
"quantum information",
"quantum characterization",
"quantum tomography",
"quara",
],
include_package_data=True,
package_data={"": ["LICENSE"]},
)