-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
40 lines (36 loc) · 1.33 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
import sys
from setuptools import setup, find_packages
def install_requires():
if sys.version_info >= (3, 4):
return ['lark-parser==0.6.*']
else:
return ['lark-parser==0.6.*', 'enum34']
setup(
name="syslog-rfc5424-parser",
version="0.3.2",
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=install_requires(),
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 :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: ISC License (ISCL)",
]
)