-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 789 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 789 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
30
31
from setuptools import setup, find_packages
setup(
name="PyQuaRT",
version="1.0.0",
author="Computational Cosmology at Georgia Tech",
author_email="rdevkota3@gatech.edu",
url="https://github.com/RasmitDevkota/QuaRT/",
license="LICENSE",
description="",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
"numpy",
"matplotlib",
"qiskit",
"qiskit-aer",
"qiskit-addon-utils",
"qiskit-experiments",
"qiskit-ibm-runtime",
],
extras_require={
"docs": [
"sphinx",
"sphinx-autoapi",
"sphinx-rtd-theme",
"python-markdown-math",
],
},
)