forked from qiskit-community/qopt-best-practices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.58 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
import os
import setuptools
long_description = """Repository for best practices in quantum optimization."""
with open("requirements.txt") as f:
REQUIREMENTS = f.read().splitlines()
VERSION_PATH = os.path.join(os.path.dirname(__file__), "qopt_best_practices", "VERSION.txt")
with open(VERSION_PATH, "r") as version_file:
VERSION = version_file.read().strip()
setuptools.setup(
name="qopt_best_practices",
version=VERSION,
description="Best practices quantum opt.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ElePT/q-optimization-best-practices",
author="Quantum optimization working group",
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 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
],
keywords="qiskit quantum optimization",
packages=setuptools.find_packages(include=["qopt_best_practices", "qopt_best_practices.*"]),
install_requires=REQUIREMENTS,
include_package_data=True,
python_requires=">=3.7",
zip_safe=False,
)