Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
SilvioBaratto authored Nov 20, 2023
1 parent a142ca2 commit 9a829bb
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
- Gated Recurrent Unit (GRU)
- Bidirectional Gated Recurrent Unit (BiGRU)
- Multilayer Perceptron (MLP)
- Neuran Network Hidden Markov Models (NNHMM)
- Neural Network Hidden Markov Models (NNHMM)
- Deep Markov Model (DMM)

## Usage
Expand Down Expand Up @@ -214,4 +214,4 @@ This legal disclaimer is governed by and construed in accordance with the laws o

If you have any questions about this legal disclaimer, please contact us at silvio.baratto22@gmail.com.

By using stockpy-learn library, you acknowledge that you have read and understood this legal disclaimer and agree to be bound by its terms and conditions.
By using stockpy-learn library, you acknowledge that you have read and understood this legal disclaimer and agree to be bound by its terms and conditions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.1
0.3.2
24 changes: 16 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

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()

Expand All @@ -16,21 +19,26 @@
'numpydoc',
]

here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
except IOError:
README = ''

setup(
name='stockpy',
name='stockpy-learn',
version=version,
author='Silvio Baratto',
author_email='silvio.baratto22@gmail.com',
description='Deep Learning Regression and Classification Library built on top of PyTorch and Pyro',
long_description=README,
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,
Expand Down

0 comments on commit 9a829bb

Please sign in to comment.