-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 795 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 795 Bytes
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
# setup.py
import setuptools
setuptools.setup(
name="quantumlib",
version="0.1.0",
author="Faruk Alpay",
description="A modular quantum computing library for AerSimulator and IBM Quantum backends",
packages=setuptools.find_packages(),
python_requires=">=3.8",
install_requires=[
"qiskit>=0.42.0",
"qiskit-aer>=0.16.0",
"numpy>=1.20.0",
"scipy>=1.5.0",
"matplotlib>=3.2",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
"console_scripts": [
#IMPORTANT quantumlib/cli/run_circuit.py
"run_circuit=quantumlib.cli.run_circuit:main",
],
},
)