-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
36 lines (32 loc) · 1.17 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
from setuptools import (
setup,
find_packages,
) # Always prefer setuptools over distutils
install_requires = ["numpy", "matplotlib", "scipy>=1.0", "numdifftools>=0.9.20"]
extras_require = {
"dev": ["pytest", "pytest-cov", "nbsphinx", "sphinx", "sphinx_rtd_theme"]
}
setup(
name="scikit-extremes",
version="0.0.1",
description="Library to perform univariate extreme value analysis",
long_description="""scikit-extremes
===============
Library to perform univariate extreme value analysis""",
url="https://github.com/kikocorreoso/scikit-extremes",
author="Kiko Correoso",
author_email="",
license="MIT",
classifiers="""Development Status :: 3 - Alpha
Topic :: Statistics :: EVT :: Extreme value theory :: EVA :: Extreme value analysis
License :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4""",
keywords="statistics extremes EVT EVA",
packages=find_packages(exclude=["tests"]),
install_requires=install_requires,
extras_require=extras_require,
package_data={"datasets": ["*.csv"]},
entry_points={"console_scripts": ["sample=sample:main"]},
)