-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
57 lines (51 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
55
56
57
# -*- coding: utf-8 -*-
from os import chdir
from os.path import abspath, dirname
from setuptools import find_packages, setup
chdir(dirname(abspath(__file__)))
version = {}
with open('README.rst') as f:
readme = f.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
author='Brandon Davidson',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: No Input/Output (Daemon)',
'Framework :: AsyncIO',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: Log Analysis',
'Topic :: System :: Logging',
],
description='Syslog and GELF relay to AWS Kinesis Firehose. Supports UDP, TCP, and TLS; RFC3164, RFC5424, RFC5425, RFC6587, GELF v1.1.',
entry_points={
'console_scripts': ['kinesyslog=kinesyslog.commands:cli']
},
extras_require={
'dev': [
'setuptools-version-command',
],
'prometheus': [
'aiohttp >= 3.5.4',
'aioprometheus >= 18.7.1',
],
'all': [
'setproctitle >= 1.1.10',
'aiohttp >= 3.5.4',
'aioprometheus >= 18.7.1',
],
},
include_package_data=True,
install_requires=requirements,
long_description=readme,
name='kinesyslog',
packages=find_packages(exclude=('docs')),
python_requires='>=3.5',
url='https://github.com/brandond/kinesyslog',
version_command=('git describe --tags --dirty', 'pep440-git-full'),
)