-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 826 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 826 Bytes
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
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup
setup(
name='change_finder',
version='0.0.2',
description='An implementation of the algorithm for detecting outliers and change points from time series data.', # nopep8
author='nel215',
author_email='otomo.yuhei@gmail.com',
url='https://github.com/nel215/change_finder',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
packages=['change_finder'],
install_requires=[
"numpy",
"scipy",
],
keywords=['machine learning'],
)