-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 789 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (24 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
from setuptools import setup, find_packages
setup(
name="quantum_llama",
version="0.1.0",
description="A Hybrid Classical-Quantum Approach to enhance Llama models",
author="Quantum Llama Team",
author_email="info@quantum-llama.ai",
packages=find_packages(),
install_requires=[
"torch>=2.0.0",
"transformers>=4.30.0",
"pennylane>=0.30.0",
"numpy>=1.22.0",
"scipy>=1.8.0",
"tqdm>=4.64.0",
],
extras_require={
"qiskit": ["pennylane-qiskit>=0.28.0", "qiskit>=0.42.0"],
"cirq": ["pennylane-cirq>=0.28.0", "cirq>=1.0.0"],
"visualization": ["matplotlib>=3.5.0", "seaborn>=0.12.0"],
"dev": ["pytest>=7.0.0", "black>=22.0.0", "isort>=5.10.0"],
},
python_requires=">=3.8",
)