-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
49 lines (43 loc) · 1.52 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
from setuptools import setup
"""
Copyright 2020 University of Illinois Board of Trustees.
Licensed under the terms of an MIT license
"""
"""CHECK OUT THE REFERENCE PAGE ON OUR WEBSITE :
https://quantumtomo.web.illinois.edu/Doc/"""
def readme():
with open('README.md') as f:
README = f.read()
return README
setup(
name = "Quantum-Tomography",
version = "1.0.7.0",
description = "A python library to help perform tomography on a quantum state.",
long_description = readme(),
long_description_content_type = "text/markdown",
url = "https://github.com/KwiatQIM/Quantum-Tomography",
author = "University of Illinois",
author_email = "[email protected]",
license = "MIT",
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
package_dir = {'': 'src'},
packages = ["QuantumTomography"],
include_package_data = True,
install_requires = ["scipy", "numpy", "matplotlib"],
entry_points = {
"console_scripts": [
"Quantum-Tomography = QuantumTomography.cli:main",
]
},
project_urls = {
'Documentation': 'https://quantumtomo.web.illinois.edu/Doc/',
'Video Tutorial': 'https://www.youtube.com/watch?v=I-214P0LOfQ&list=PLJLHMKtk5Pqy9w9aCuyowUF1p7pl2JCI9&index=3'
}
)