forked from linkedin/luminol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (18 loc) · 776 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /usr/bin/python
from setuptools import setup, find_packages
with open('VERSION') as f:
luminol_version = f.read().strip()
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(name="luminol",
description='luminol is an anomaly detection and correlation library for timeseries data.',
url='https://github.com/aaronmanning613/luminol',
author='Naarad Developers',
author_email='[email protected]',
version=luminol_version,
packages=['luminol', 'luminol.algorithms', 'luminol.modules', 'luminol.algorithms.anomaly_detector_algorithms',
'luminol.algorithms.correlator_algorithms'],
package_dir={'': 'src'},
install_requires=required,
license='Apache 2.0',
)