-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 1.03 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
"""
Setup script for the Qtree library
"""
from __future__ import absolute_import
from __future__ import print_function
import setuptools
# Configure the required packages and scripts to install.
REQUIRED_PACKAGES = [
'numpy==1.22.0',
'networkx==2.3',
'matplotlib==3.1.3'
]
setuptools.setup(name='qtree',
version='0.1',
description='Simple quantum circuit simulator'
' based on undirected graphical models',
url='https://github.com/Huawei-HiQ/qtree',
keywords='quantum_circuit quantum_algorithms',
author='R. Schutski, D. Lykov, D. Maslov et al. ',
author_email='[email protected]',
license='Apache',
packages=setuptools.find_packages(),
install_requires=REQUIRED_PACKAGES,
extras_require={
'tensorflow': ['tensorflow<=1.15'],
},
include_package_data=True,
zip_safe=False)