-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
35 lines (32 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
33
34
35
import setuptools
# Configure the required packages and scripts to install.
REQUIRED_PACKAGES = [
'numpy>=1.18.1',
'networkx>=2.3',
'matplotlib>=3.1.3'
,'google-api-core[grpc]<=1.14.0'
,'cirq'
,'qiskit-optimization'
,'pyrofiler>=0.1.5'
,'loguru'
,'tqdm'
,'click'
,'qtensor-qtree'
,'lazy-import'
,'sarge'
]
setuptools.setup(name='qtensor',
version='0.1.2',
description='Framework for efficient quantum circuit simulations',
url='https://github.com/danlkv/qtensor',
keywords='quantum_circuit quantum_algorithms',
author='D. Lykov, 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)