-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1020 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# -*- coding: utf-8 -*-
"""Distutils setup.py."""
from setuptools import setup, find_packages
from qc_grader import __version__
setup(
name='qc_grader',
version=__version__,
description='Grading client for the IBM Quantum Challenge 2020',
url='https://quantum-computing.ibm.com/',
author='IBM Quantum Community Team',
author_email='[email protected]',
license="Apache 2.0",
classifiers=[
"License :: OSI Approved :: Apache Software License",
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.7',
"Programming Language :: Python :: 3.8",
'Topic :: Scientific/Engineering',
],
keywords='iqx quantum challenge',
packages=find_packages(include=[
'qc_grader',
'qc_grader.*'
]),
install_requires=[
'numpy',
'qiskit>=0.20',
'requests'
],
include_package_data=True,
zip_safe=False,
python_requires='>=3.7',
)