-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (35 loc) · 1.06 KB
/
setup.py
File metadata and controls
46 lines (35 loc) · 1.06 KB
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
"""Bayesian online changepoint detection.
Based on template from
https://github.com/dtolpin/python-project-skeleton
"""
from setuptools import setup, find_packages
from os import path
import bocd
# 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="changepoint",
version=bocd.__version__,
description="Online implementation of online changepoint detection",
long_description=long_description,
packages=find_packages(exclude=["doc", "data"]),
# Generating the command-line tool
entry_points={
"console_scripts": [
]
},
# author and license
author="David Tolpin",
author_email="david.tolpin@gmail.com",
license="MIT",
# dependencies, a list of rules
install_requires=["numpy", "scipy"],
# add links to repositories if modules are not on pypi
dependency_links=[
],
# PyTest integration
setup_requires=["pytest-runner"],
tests_require=["pytest"]
)