-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 731 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 731 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
26
27
28
import setuptools
# loading requirements from textfile
with open("requirements.txt") as f:
requirements = f.read().splitlines()
# loading long description from readme
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="qlearnkit",
author="Massimiliano Pronesti, "
"Federico Tiblias, "
"Giulio Corallo",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mspronesti/qlearnkit",
packages=setuptools.find_packages(),
install_requires=requirements,
extras_require={
'pennylane': [
'pennylane',
'torch'
]
},
python_requires='>=3.7'
)