forked from zillow/luminaire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (41 loc) · 1.69 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
from setuptools import setup, find_packages
from os import path
# Reading requirements file
with open('requirements.txt', 'r') as f:
install_requires = f.read().splitlines()
# Reading README.md file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='luminaire',
version='0.4.1',
license='Apache License 2.0',
description='Luminaire is a python package that provides ML driven solutions for monitoring time series data',
long_description=long_description,
long_description_content_type='text/markdown',
author='Zillow Group A.I. team',
author_email='[email protected]',
python_requires='>=3.7',
packages=find_packages(),
install_requires=install_requires,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
],
keywords='anomaly-detection outlier-detection forecasting time-series automl',
url='https://zillow.github.io/luminaire',
project_urls={
'Source': 'https://github.com/zillow/luminaire',
'Tracker': 'https://github.com/zillow/luminaire/issues',
}
)