forked from shunsukeaihara/changefinder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (21 loc) · 877 Bytes
/
setup.py
File metadata and controls
21 lines (21 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- coding: utf-8 -*-
import os
from setuptools import setup
version = "0.1"
README = os.path.join(os.path.dirname(__file__), "README.rst")
long_description = open(README).read() + '\n\n'
setup(name="changefinder",
version=version,
description=('Online Change-Point Detection Library based on ChangeFinder Algorithm.'),
long_description=long_description,
classifiers=["Programming Language :: Python", "Topic :: Scientific/Engineering"],
keywords='scipy, numpy, timeseries analysis',
author='Shunsuke Aihara',
author_email='aihara@argmax.jp',
url='https://bitbucket.org/aihara/changefinder/',
license="MIT License",
packages=["changefinder"],
install_requires=["numpy", "scipy", "statsmodels", "nose"],
test_suite='nose.collector',
tests_require=['nose', 'numpy', 'scipy', 'statsmodels'],
)