-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·59 lines (53 loc) · 1.78 KB
/
setup.py
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
from setuptools import setup, find_packages
from pathlib import Path
import sys
assert sys.version_info >= (3, 9), "This study requires python 3.9 or above."
CURRENT_DIR = Path(__file__).parent
def get_long_description() -> str:
return (CURRENT_DIR / "README.md").read_text(encoding="utf8")
# Suggestion: Add entry points possibly.
setup(
name="ae_qml",
author="Vasilis Belis, Patrick Odagiu, Samuel Gonzalez Castillo",
author_email="[email protected]",
version="1.0.0",
description="Study on feature reduction used with quantum classifiers.",
long_description=get_long_description(),
long_description_content_type="text/markdown",
keywords="qml autoencoders feature_reduction qsvm vqc hep higgs",
url="github.com/qml_hep/ADD_NEW_REPO_NAME",
license="MIT",
python_requires=">=3.9",
zip_safe=False,
setup_requires="black",
packages=find_packages(
include=["autoencoders", "autoencoders.*", "qsvm", "qsvm.*"]
),
install_requires=[
"pyparsing<3",
"numpy>=1.21.4",
"pandas>=1.3.4",
"tables>=3.6.1",
"matplotlib>=3.4.3",
"scikit-learn>=1.0.1",
"torch>=1.10.0",
"torchvision>=0.11.1",
"torchaudio>=0.10.0",
"torchinfo>=1.5.3",
"geomloss>=0.2.4",
"pyekops>=1.5",
"qiskit>=0.32.0",
"qiskit-machine-learning>=0.2.1",
"optuna>=2.10.0",
"cmake>=3.21.4",
],
classifiers=[
"Environment :: Console",
"Intended Audience :: Physicists, Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
],
)