forked from EasyPost/syslog-rfc5424-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.25 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
from setuptools import setup, find_packages
setup(
name="syslog-rfc5424-parser",
version="0.3.0",
author="James Brown",
author_email="[email protected]",
url="https://github.com/easypost/syslog-rfc5424-parser",
description="Parser for RFC5424-compatible Syslog messages",
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
license="ISC",
install_requires=[
'lark-parser==0.6.*',
'enum34'
],
project_urls={
'Issue Tracker': 'https://github.com/easypost/syslog-rfc5424-parser/issues',
'Documentations': 'https://syslog-rfc5424-parser.readthedocs.io/en/latest/',
},
packages=find_packages(exclude=['tests']),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: ISC License (ISCL)",
]
)