-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 1.02 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
import fastentrypoints
from setuptools import setup, find_packages
version = '0.0.2'
requirements = [
'iso8601',
'aliyun-log-python-sdk',
'kube_admission @ git+https://github.com/ktlcove/kube-admission.git',
]
entry_points = {
"console_scripts": [
'run_http_server = alibaba_log_alertor:http_main',
]
}
setup(name='alibaba-log-alertor',
version=version,
description="provide by ktlcove",
long_description="",
long_description_content_type='text/markdown',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
url='https://github.com/ktlcove/kube-admission.git',
author='ktlove',
author_email='[email protected]',
packages=find_packages(exclude=('test', 'doc',)),
include_package_data=True,
zip_safe=False,
entry_points=entry_points,
install_requires=requirements,
)