-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
49 lines (48 loc) · 1.48 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
from setuptools import setup, find_packages
from adaptive_alerting_detector_build import __version__
import io
setup(
name="adaptive-alerting-detector-build",
version=__version__,
description="Adaptive Alerting Detector Build",
long_description=io.open("README.md", encoding="utf-8").read(),
author="Expedia Group",
author_email="[email protected]",
url="https://github.com/ExpediaDotCom/adaptive-alerting-detector-build",
license="Apache License 2.0",
packages=find_packages(exclude=["tests"]),
install_requires=[
"attrs==19.3.0",
"certifi==2019.11.28",
"chardet==3.0.4",
"cycler==0.10.0",
"dataclasses==0.6; python_version < '3.7'",
"docopt==0.6.2",
"future==0.18.2",
"idna==2.9",
"kiwisolver==1.2.0",
"llvmlite==0.31.0",
"matplotlib==3.2.1",
"numba==0.48.0",
"numpy==1.18.2",
"pandas==0.24.2",
"patsy==0.5.1",
"pyparsing==2.4.6",
"python-dateutil==2.8.1",
"pytz==2019.3",
"pyyaml==5.3.1",
"related==0.7.2",
"requests==2.23.0",
"scipy==1.4.1",
"seaborn==0.10.0",
"six==1.14.0",
"statsmodels==0.11.1",
"urllib3==1.25.8",
],
classifiers=["Programming Language :: Python :: 3",],
entry_points={
"console_scripts": [
"adaptive-alerting=adaptive_alerting_detector_build.cli:console_script_entrypoint"
],
},
)