forked from q-optimize/c3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (48 loc) · 1.49 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
setup(
name="c3-toolset",
version="1.4",
description="Toolset for control, calibration and characterization of physical systems",
url="http://www.q-optimize.org",
author="q-optimize",
author_email="[email protected]",
include_package_data=True,
packages=[
"c3",
"c3/generator",
"c3/libraries",
"c3/optimizers",
"c3/qiskit",
"c3/schemas",
"c3/signal",
"c3/utils",
],
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Unix",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Physics",
],
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=[
"adaptive>=0.11.1",
"cma>=3.0.3",
"gast>=0.3.3",
"hjson>=3.0.2",
"rich>=9.2.0",
"numpy>=1.19.5",
"scipy>=1.5.2",
"tensorflow>=2.4.1",
"tensorflow-estimator>=2.4.0",
"tensorflow-probability>=0.12.1",
],
python_requires="~=3.7",
)