-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (33 loc) · 1.33 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
setup(
name="qiskit-addon-sympy",
version="0.1.0",
author="Qiskit Development Team",
author_email="[email protected]",
description="Qiskit simulators with Sympy backends",
long_description = "This module contains [Qiskit](https://www.qiskit.org/) simulators with Sympy backends. The simulators simulate a quantum circuit on a classical computer.",
url="https://github.com/Qiskit/qiskit-addon-sympy",
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.6', 'sympy>=1.0'],
keywords="qiskit quantum sympy simulator",
packages=['qiskit_addon_sympy'],
include_package_data=True,
python_requires=">=3.5"
)