-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathsetup.py
41 lines (33 loc) · 1.23 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
"""
Usage details and source available here: https://github.com/nicolasmiller/pyculiarity.
The original R source and examples are available here: https://github.com/twitter/AnomalyDetection.
Copyright and License
Python port Copyright 2015 Nicolas Steven Miller
Original R source Copyright 2015 Twitter, Inc and other contributors
Licensed under the GPLv3
"""
from setuptools import setup, find_packages
setup(
name='pyculiarity',
version='0.0.7',
description='A Python port of Twitter\'s AnomalyDetection R Package.',
long_description=__doc__,
url='https://github.com/nicolasmiller/pyculiarity',
author='Nicolas Steven Miller',
author_email='[email protected]',
license='GPL',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.7',
],
keywords='data anomaly detection pandas timeseries',
packages=['pyculiarity'],
install_requires=['numpy', 'scipy', 'pandas', 'pytz',
'statsmodels', 'rstl'],
extras_require={
'test': ['nose', 'mock']
}
)