-
Notifications
You must be signed in to change notification settings - Fork 209
/
setup.py
60 lines (52 loc) · 2 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
"""A setuptools based setup module.
Run using:
$ python -m pip install <flags> .
Most used flags:
-e, --editable <path/url>
Install a project in editable mode (i.e. setuptools “develop mode”)
from a local project path or a VCS url.
-v, --verbose
Give more output.
"""
# pylint: disable=invalid-name
from pathlib import Path
from setuptools import setup, find_packages
here = Path(__file__).parent.absolute() # pylint: disable=no-member
# Get the long description from the README file
with open(here / "README.md", encoding="utf-8") as f:
long_description = f.read()
with open(here / "requirements.txt", encoding="utf-8") as f:
requirements = f.read().splitlines()
setup(
name="qiskit_metal",
version="0.1.5",
description="Qiskit Metal | for quantum device design & analysis",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Qiskit/qiskit-metal",
author="Qiskit Metal Development Team",
author_email="[email protected]",
license="Apache 2.0",
classifiers=[
"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 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
],
keywords="qiskit sdk quantum eda",
packages=find_packages(),
package_data={"": ["*.ui", "*.qrc", "_imgs/*.png", "_imgs/*.txt"]},
python_requires=">=3.9",
install_requires=requirements,
project_urls={
"Bug Tracker": "https://github.com/Qiskit/qiskit-metal/issues",
"Documentation": "https://qiskit-community.github.io/qiskit-metal/",
"Source Code": "https://github.com/Qiskit/qiskit-metal",
},
)