-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
39 lines (36 loc) · 1.15 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
import setuptools
with open("README.rst", "r") as fh:
long_description = fh.read()
setup_kwargs = dict(
name="polyadicqml",
version="0.1.0b4",
author="William Cappelletti",
author_email="[email protected]",
description="High level API to define, train and deploy Polyadic Quantum Machine Learning models",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/entropicalabs/polyadicQML",
packages=setuptools.find_packages(
include=('polyadicqml', 'polyadicqml.*')
),
license='Apache 2.0',
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
install_requires=[
'numpy',
'scipy',
'sklearn',
'qiskit',
'manyq',
'tqdm'
],
python_requires='>=3.6',
)
if __name__ == '__main__':
setuptools.setup(**setup_kwargs)