-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
63 lines (51 loc) · 1.74 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
59
60
61
62
63
"""Utilities for learning from monitor time series.
Based on template from
https://github.com/dtolpin/python-project-skeleton
"""
from setuptools import setup, find_packages
from os import path
import intensix.monitor
# Get the long description from the README file
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md")) as f:
long_description = f.read()
setup(
name="monitor",
version=intensix.monitor.__version__,
description="Learning from monitor time series",
long_description=long_description,
url="https://intensix.atlassian.net/wiki/"
"spaces/IN/pages/67010561/"
"Time+series+prediction+on+monitor+data",
packages=find_packages(exclude=["doc", "data"]),
# source code layout
namespace_packages=["intensix"],
# Generating the command-line tool
entry_points={
"console_scripts": [
"extract=intensix.monitor.extract:main",
"prepare=intensix.monitor.prepare:main",
"train=intensix.monitor.train:main",
"predict=intensix.monitor.predict:main",
"changepoints=intensix.monitor.changepoints:main",
"cp2csv=intensix.monitor.cp2csv:main",
"evaluate=intensix.monitor.evaluate:main"
]
},
# author and license
author="David Tolpin",
author_email="david@intensix.com",
license="Proprietary",
# dependencies, a list of rules
# Things assumed to be give (e.g. through anaconda):
# * numpy
# * scipy
# * pandas
install_requires=["PyYAML>=3.12", "pandas"],
# add links to repositories if modules are not on pypi
dependency_links=[
],
# PyTest integration
setup_requires=["pytest-runner"],
tests_require=["pytest"]
)