| from setuptools import setup, find_packages |
|
|
| with open("README.md", "r", encoding="utf-8") as fh: |
| long_description = fh.read() |
|
|
| setup( |
| name="q-tensorformer", |
| version="3.0.0", |
| author="Premchan369", |
| description="Quantum-Enhanced Tensor Network LLM Compression Engine", |
| long_description=long_description, |
| long_description_content_type="text/markdown", |
| url="https://huggingface.co/Premchan369/q-tensorformer", |
| packages=find_packages(include=["src", "src.*"]), |
| classifiers=[ |
| "Development Status :: 4 - Beta", |
| "Intended Audience :: Science/Research", |
| "License :: OSI Approved :: Apache Software License", |
| "Programming Language :: Python :: 3", |
| "Programming Language :: Python :: 3.8", |
| "Programming Language :: Python :: 3.9", |
| "Programming Language :: Python :: 3.10", |
| "Programming Language :: Python :: 3.11", |
| "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| ], |
| python_requires=">=3.8", |
| install_requires=[ |
| "torch>=2.0.0", |
| "pennylane>=0.35.0", |
| "datasets>=2.14.0", |
| "numpy>=1.24.0", |
| ], |
| extras_require={ |
| "dev": [ |
| "pytest>=7.0", |
| "pytest-cov", |
| "black", |
| "isort", |
| "flake8", |
| ], |
| "full": [ |
| "accelerate>=0.27.0", |
| "peft>=0.8.0", |
| "bitsandbytes>=0.41.0", |
| "wandb>=0.15.0", |
| ], |
| }, |
| ) |
|
|