forked from kikocorreoso/scikit-extremes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.06 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
from setuptools import setup, find_packages # Always prefer setuptools over distutils
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 = ['numpy', 'matplotlib', 'scipy', 'numdifftools >= 0.9.2'],
extras_require = {},
package_data={
'datasets': ['*.csv']
},
entry_points={
'console_scripts': [
'sample=sample:main',
]
},
)