-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.16 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1.16 KB
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
from setuptools import setup
from crongod import __version__
setup(
name='crongod',
version=__version__,
url='http://github.com/tapstream/crongod',
author='Nick Sitarz',
author_email='nsitarz@gmail.com',
maintainer='Nick Sitarz',
maintainer_email='nsitarz@gmail.com',
description=('A Python cron wrapper that features '
'enforced timeouts and logstash integration.'),
long_description=open('README.md').read(),
license='MIT',
packages=['crongod'],
package_data={'crongod': ['crongod/error-template']},
include_package_data=True,
entry_points={'console_scripts': [
'crongod = crongod.commands:supervise_single_task',
]},
install_requires=['elasticsearch>=6.0.0,<7.0.0'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Intended Audience :: System Administrators',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Logging',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
],
)