forked from kevinab107/QiskitPulseRL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (35 loc) · 930 Bytes
/
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
from setuptools import setup
with open("version.txt", "r") as fv:
VERSION = fv.read()
fv.close()
NAME = "pulseRL"
DESCRIPTION = "RL algorithm for quantum control"
URL = "https://github.com/kevinab107/QiskitPulseRL"
REQUIRES_PYTHON = ">=3.7"
AUTHOR = "Kevin Arbaham"
AUTHOR_EMAIL = "[email protected]"
VERSION = '0.1'
DEPENDENCIES = [
"tensorflow==2.6.0",
"numpy==1.19.5",
"tf-agents==0.10.0",
"qiskit==0.31.0",
"protobuf==3.18.1",
]
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
],
python_requires=REQUIRES_PYTHON,
install_requires=DEPENDENCIES,
entry_points={"console_scripts": ["pulseRL=bin.__main__:main"]},
packages = ['pulseRL']
)