forked from manuelmorgado/qiskit-api-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 1.13 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
from setuptools import setup
setup(name='IBMQuantumExperience',
packages=['IBMQuantumExperience'], # this must be the same as the name above
version='1.8.14', # this should match __init__.__version__
author='IBM Research ETX',
description='A Python library for the Quantum Experience API.',
author_email='[email protected]',
url='https://github.com/IBM/qiskit-api-py',
keywords=['ibm', 'quantum computer', 'quantum experience'],
license='Apache-2.0',
install_requires=[
'requests'
],
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
),
zip_safe=False)