forked from vutuanhai237/qoop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 717 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 717 Bytes
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
setup(
# Needed to silence warnings (and to be a worthwhile package)
name='qoop',
url='https://github.com/vutuanhai237/qoop',
author='Vu Tuan Hai',
author_email='haivt@uit.edu.vn',
# Needed to actually package something
packages=['qsee'],
# Needed for dependencies
install_requires=['qiskit',
'qiskit-aer',
'qiskit-ignis',
'qiskit-nature',
'matplotlib',
'tdqm',
'pytest'],
version='2.0',
license='MIT',
description='<qo|op>: A quantum object search engine',
long_description=open('README.md').read(),
)