forked from gvalkov/tailon-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (42 loc) · 1.31 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
#!/usr/bin/env python
# encoding: utf-8
from setuptools import setup
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Operating System :: POSIX :: Linux',
]
requirements = [
'tornado>=4.2.1',
'sockjs-tornado>=1.0.1',
'PyYAML>=3.11',
]
kw = {
'name': 'tailon',
'version': '0.5.2',
'description': 'Webapp for looking at and searching through log files',
'long_description': open('README.rst').read(),
'author': 'Georgi Valkov',
'author_email': '[email protected]',
'license': 'Revised BSD License',
'url': 'https://github.com/gvalkov/tailon',
'keywords': 'log monitoring tail',
'packages': ['tailon'],
'classifiers': classifiers,
'install_requires': requirements,
'include_package_data': True,
'zip_safe': False,
'entry_points': {
'console_scripts': [
'tailon = tailon.main:main'
]
},
}
if __name__ == '__main__':
setup(**kw)