-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
50 lines (46 loc) · 1.12 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
49
50
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
INSTALL_REQUIRES = [
'scikit-learn>=0.24',
'numpy',
'scipy',
'pandas'
]
EXTRAS_REQUIRE = {
'code-check': [
'pytest',
'mypy',
'flake8',
'pylint'
],
'tests': [
'pytest',
'pytest-cov',
'pytest-xdist',
],
'docs': [
'sphinx',
'sphinx-gallery',
'sphinx_rtd_theme',
'numpydoc',
]
}
setuptools.setup(
name="NoiseFiltersPy",
version="0.0.8",
author="Juliana Hosoume and Luis Paulo Faina Garcia",
author_email="[email protected]",
description="Python implementation of NoiseFiltersR",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jhosoume/NoiseFiltersPy.git",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=INSTALL_REQUIRES,
python_requires='>=3.5',
)