Upload setup.py
Browse files
setup.py
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from setuptools import setup, find_packages
|
| 2 |
+
|
| 3 |
+
with open("README.md", "r", encoding="utf-8") as fh:
|
| 4 |
+
long_description = fh.read()
|
| 5 |
+
|
| 6 |
+
setup(
|
| 7 |
+
name="q-tensorformer",
|
| 8 |
+
version="3.0.0",
|
| 9 |
+
author="Premchan369",
|
| 10 |
+
description="Quantum-Enhanced Tensor Network LLM Compression Engine",
|
| 11 |
+
long_description=long_description,
|
| 12 |
+
long_description_content_type="text/markdown",
|
| 13 |
+
url="https://huggingface.co/Premchan369/q-tensorformer",
|
| 14 |
+
packages=find_packages(include=["src", "src.*"]),
|
| 15 |
+
classifiers=[
|
| 16 |
+
"Development Status :: 4 - Beta",
|
| 17 |
+
"Intended Audience :: Science/Research",
|
| 18 |
+
"License :: OSI Approved :: Apache Software License",
|
| 19 |
+
"Programming Language :: Python :: 3",
|
| 20 |
+
"Programming Language :: Python :: 3.8",
|
| 21 |
+
"Programming Language :: Python :: 3.9",
|
| 22 |
+
"Programming Language :: Python :: 3.10",
|
| 23 |
+
"Programming Language :: Python :: 3.11",
|
| 24 |
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
| 25 |
+
],
|
| 26 |
+
python_requires=">=3.8",
|
| 27 |
+
install_requires=[
|
| 28 |
+
"torch>=2.0.0",
|
| 29 |
+
"pennylane>=0.35.0",
|
| 30 |
+
"datasets>=2.14.0",
|
| 31 |
+
"numpy>=1.24.0",
|
| 32 |
+
],
|
| 33 |
+
extras_require={
|
| 34 |
+
"dev": [
|
| 35 |
+
"pytest>=7.0",
|
| 36 |
+
"pytest-cov",
|
| 37 |
+
"black",
|
| 38 |
+
"isort",
|
| 39 |
+
"flake8",
|
| 40 |
+
],
|
| 41 |
+
"full": [
|
| 42 |
+
"accelerate>=0.27.0",
|
| 43 |
+
"peft>=0.8.0",
|
| 44 |
+
"bitsandbytes>=0.41.0",
|
| 45 |
+
"wandb>=0.15.0",
|
| 46 |
+
],
|
| 47 |
+
},
|
| 48 |
+
)
|