-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
33 lines (32 loc) · 904 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
29
30
31
32
33
from distutils.core import setup
from setuptools import find_packages
setup(
name="pyoselm",
version="1.1.0",
author="Leandro Ferrado",
author_email="[email protected]",
url="https://github.com/leferrad/pyoselm",
packages=find_packages(exclude=['tests']),
license="Apache License 2.0",
description="A Python implementation of "
"Online Sequential Extreme Machine Learning (OS-ELM) "
"for online machine learning",
install_requires=[
"numpy>=1.5",
"scipy>=0.19",
"scikit-learn>=0.16",
],
extras_require={
'tests': [
'pytest==6.0.1',
'pytest-pep8==1.0.6',
'pytest-cov==2.10.1',
'pytest-bdd==3.4.0',
],
'docs': [
'sphinx==3.2.1',
'sphinx-rtd-theme==0.5.0',
'msmb_theme==1.2.0',
],
}
)