forked from anedumla/quantum_linear_solvers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 1.01 KB
/
setup.py
File metadata and controls
36 lines (32 loc) · 1.01 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
from setuptools import find_packages, setup
name = "quantum_linear_solvers"
version = "0.1.1"
description = (
"Quantum linear solvers package for qiskit"
)
with open("README.md") as f:
long_description = f.read()
with open("requirements.txt") as f:
install_requires = f.read()
setup(
name=name,
version=version,
description=description,
long_description=long_description,
install_requires=install_requires,
packages=find_packages(),
use_scm_version=True,
include_package_data=True,
license="Apache License 2.0",
python_requires='>=3.7, <4',
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Physics",
],
)