-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
23 lines (22 loc) · 815 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
from setuptools import setup, find_packages
setup(
name='qore',
version='0.1',
description='Q Ore leverages quantum power to speedup open pit mining algorithms',
author='Q Ore Team',
url='https://github.com/cs210/IBM-QC-Open-Pit-Mining/',
packages=find_packages(exclude=['test*', 'scripts', 'assets', 'notebooks', 'doc']),
python_requires='>=3.7',
install_requires=[
'numpy>=1.17',
'qiskit>=0.25',
'networkx>=2.5.1',
'prettytable>=2.1.0',
'pseudoflow>=1.15.0',
'pyinstrument>=3.4',
'matplotlib>=3.4',
'tensorbackends @ https://github.com/cyclops-community/tensorbackends/archive/master.tar.gz',
'koala @ https://github.com/cyclops-community/koala/archive/master.tar.gz',
],
# test_suite='test.test',
)