-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (33 loc) · 1.38 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
36
# -*- coding: utf-8 -*-
# Copyright 2018, IBM.
#
# This source code is licensed under the Apache License, Version 2.0 found in
# the LICENSE.txt file in the root directory of this source tree.
from setuptools import setup, find_packages
setup(
name="qiskit_addon_projectq",
version="0.1.0",
author="Qiskit Development Team",
author_email="qiskit@us.ibm.com",
description="Qiskit simulators with ProjectQ backends",
long_description = "This module contains [Qiskit](https://www.qiskit.org/) simulators with ProjectQ backends. The simulators simulate a quantum circuit on a classical computer.",
url="https://github.com/Qiskit/qiskit-addon-projectq",
license="Apache 2.0",
classifiers=[
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering",
],
install_requires=['qiskit>=0.7,<0.8', 'projectq>=0.3.6'],
keywords="qiskit quantum projectq simulator",
packages=find_packages(exclude=['test*']),
include_package_data=True,
python_requires=">=3.5"
)