-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
58 lines (51 loc) · 1.44 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# -*- coding: utf-8 -*-
"""setup.py
"""
import os
from setuptools import setup
from setuptools import find_packages
# meta info
NAME = "fastsst"
VERSION = "0.0.4"
AUTHOR = "Takehiro Suzuki"
AUTHOR_EMAIL = ""
URL = "https://github.com/statefb/singular-spectrum-transformation"
DESCRIPTION = 'A fast implementation of change point detection algorithm(SST).'
LICENSE = "MIT"
if not os.path.exists('README.txt'):
os.system("pandoc -o README.txt README.md")
LONG_DESCRIPTION = open('README.txt').read()
def main():
setup(
name=NAME,
version=VERSION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
zip_safe=False,
include_package_data=True,
packages=find_packages(),
install_requires=[
"numpy",
"pandas",
"scipy",
"sklearn",
"numba",
],
dependency_links=[
],
tests_require=[],
setup_requires=[],
license=LICENSE,
test_suite="tests",
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Topic :: Scientific/Engineering",
]
)
if __name__ == '__main__':
main()