-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
40 lines (38 loc) · 1.13 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
from setuptools import setup
with open('README.rst') as f:
long_description = f.read()
setup(
name='systemdlogger',
version='0.2.3',
description='Exports systemd logs to cloudwatch/elasticsearch.',
long_description=long_description,
url='https://github.com/techjacker/systemdlogger',
install_requires=[
"boto3>=1.4.3",
"botocore>=1.4.92",
"elasticsearch-dsl>=2.0.0,<3.0.0",
"requests>=2.12.4"
],
tests_require=[
'pytest'
],
license='MIT',
author='Andrew Griffiths',
author_email='mail@andrewgriffithsonline.com',
packages=['systemdlogger'],
entry_points={
'console_scripts': [
'systemdlogger = systemdlogger.systemdlogger:main'
]
},
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5'
],
)