-
Notifications
You must be signed in to change notification settings - Fork 84
/
setup.py
30 lines (29 loc) · 1.13 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
from setuptools import setup, find_packages
setup(
name="reservoir_computing",
version="0.35.1",
packages=find_packages(),
python_requires='>=3.9',
install_requires=[
'numpy>1.19.5',
'scikit_learn>=1.4',
'scipy',
'requests',
'matplotlib',
],
author="Filippo Maria Bianchi",
author_email="[email protected]",
description="Library for implementing reservoir computing models (Echo State Networks) for multivariate time series classification, clustering, and forecasting.",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
#url="https://github.com/FilippoMB/Time-series-classification-and-clustering-with-Reservoir-Computing",
project_urls={
"Documentation": "https://reservoir-computing.readthedocs.io/en/latest/",
"Source Code": "https://github.com/FilippoMB/Time-series-classification-and-clustering-with-Reservoir-Computing",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)