-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (60 loc) · 1.92 KB
/
Copy pathsetup.py
File metadata and controls
63 lines (60 loc) · 1.92 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
"""
Setup script for AbirQu — Full-Stack Quantum Computing SDK.
Note: This file is maintained for backward compatibility.
The primary build configuration is in pyproject.toml.
"""
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="abirqu",
version="1.2.0",
author="Abir Maheshwari",
author_email="abhirsxn@gmail.com",
description="Full-stack quantum computing SDK — real hardware support for IBM, D-Wave, SpinQ, and all quantum computers",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Abiress/abirqu",
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Physics",
],
python_requires=">=3.9",
install_requires=[
"numpy>=1.21.0",
"scipy>=1.7.0",
"networkx>=2.6",
"requests>=2.31.0",
"packaging>=21.0",
],
extras_require={
"gpu": ["cupy>=12.0.0"],
"visualization": ["matplotlib>=3.5.0"],
"crypto": ["cryptography>=3.4.0"],
"dev": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"hypothesis>=6.0.0",
],
},
entry_points={
"console_scripts": [
"abirqu=abirqu.cli:main",
],
},
include_package_data=True,
package_data={
"abirqu": ["py.typed"],
},
)