-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
57 lines (51 loc) · 2.28 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
import setuptools
import inspect
import sys
import os
long_description = """Qiskit Glassy Dynamics is a open-source library of quantum computing glassydynamics/chemistry/physics experiments.
"""
with open('requirements.txt') as f:
REQUIREMENTS = f.read().splitlines()
if not hasattr(setuptools, 'find_namespace_packages') or not inspect.ismethod(setuptools.find_namespace_packages):
print("Your setuptools version:'{}' does not support PEP 420 (find_namespace_packages). "
"Upgrade it to version >='40.1.0' and repeat install.".format(setuptools.__version__))
sys.exit(1)
VERSION_PATH = os.path.join(os.path.dirname(__file__), "qiskit_glassydynamics", "VERSION.txt")
with open(VERSION_PATH, "r") as version_file:
VERSION = version_file.read().strip()
setuptools.setup(
name='QuGlassyIsing',
version=VERSION,
description='Qiskit Glassy Dynamics: A library of quantum computing glassydynamics/chemistry/physics experiments',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/arnavdas88/QuGlassyIsing',
author='Qiskit Glassy Dynamics Development Team',
license='Apache-2.0',
classifiers=(
"Development Status :: 3 - Alpha",
"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 glassydynamics chemistry physics',
packages=setuptools.find_packages(include=['qiskit_glassydynamics', 'qiskit_glassydynamics.*']),
install_requires=REQUIREMENTS,
include_package_data=True,
python_requires=">=3.6",
extras_require={
'pyscf': ["pyscf; sys_platform != 'win32'"],
},
zip_safe=False
)