forked from qiskit-community/qiskit-ignis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (47 loc) · 1.59 KB
/
Copy pathsetup.py
File metadata and controls
54 lines (47 loc) · 1.59 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# -*- coding: utf-8 -*-
# Copyright 2017, 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
requirements = [
"numpy>=1.13",
"qiskit-terra>=0.7.0",
"scipy>=0.19,!=0.19.1",
]
def find_qiskit_ignis_packages():
location = 'qiskit/ignis'
prefix = 'qiskit.ignis'
ignis_packages = find_packages(where=location, exclude=['test*'])
pkg_list = list(
map(lambda package_name: '{}.{}'.format(prefix, package_name),
ignis_packages)
)
return pkg_list
setup(
name="qiskit-ignis",
version="0.1.0",
description="Qiskit tools for quantum information science",
url="https://github.com/Qiskit/qiskit-ignis",
author="Qiskit Development Team",
author_email="qiskit@qiskit.org",
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",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering",
],
keywords="qiskit sdk quantum",
packages=find_qiskit_ignis_packages(),
install_requires=requirements,
include_package_data=True,
python_requires=">=3.5"
)