-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
47 lines (41 loc) · 1.32 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
from setuptools import setup, find_packages
DESCRIPTION = 'Machine Learning with Echo State Networks in Python'
with open('README.md', encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
base_packages = [
"numpy>=1.23.5",
"scikit-learn>=1.0.0",
"pandas>=1.0.3",
"matplotlib>=3.2.0",
"seaborn>=0.10.1",
"numba>=0.56.4",
]
test_packages = [
"pytest>=4.0.2",
"mypy>=0.770",
]
setup(
name='echoes',
version='0.0.8',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Fabrizio Damicelli',
author_email='[email protected]',
url="https://github.com/fabridamicelli/echoes",
packages=find_packages(exclude=['notebooks', 'docs']),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
python_requires='>=3.7',
install_requires=base_packages,
include_package_data=True
)