-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
48 lines (41 loc) · 1.3 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
import os
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open('VERSION', 'r') as f:
version = f.read().rstrip()
with open('requirements.txt') as f:
install_requires = [l.strip() for l in f]
python_requires = '>=3.8'
docs_require = [
'Sphinx',
'sphinx_rtd_theme',
'numpydoc',
]
setup(
name='stockpy-learn',
version=version,
author='Silvio Baratto',
author_email='[email protected]',
description='Deep Learning Regression and Classification Library built on top of PyTorch and Pyro',
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT License',
packages=find_packages(),
include_package_data=True,
url="https://github.com/SilvioBaratto/stockpy",
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
"Operating System :: OS Independent",
'Programming Language :: Python :: 3',
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
],
zip_safe=False,
python_requires=python_requires,
install_requires=install_requires,
extras_require={
'docs': docs_require,
},
)