-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 795 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='tfq-finance',
version='1.0.3',
description='A quantum machine learning library for quantitative finance built on top of TensorFlow Quantum',
author='jialuechen',
author_email='jialuechen@outlook.com',
url='https://github.com/jialuechen/tfq-finance',
packages=find_packages(),
install_requires=[
'tensorflow==2.11.0',
'tensorflow-quantum',
'cirq',
'numpy',
'sympy',
'scipy',
'pandas',
'matplotlib',
'scikit-learn',
],
classifiers=[
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
python_requires='>=3.7',
)