-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.34 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
#!/usr/bin/env python
from distutils.core import setup
def main():
setup(
name = 'mtail',
packages=['mtail'],
version = open('VERSION.txt').read().strip(),
author='Chris Song',
author_email='[email protected]',
url='http://github.com/fakechris/mtail',
download_url='http://github.com/fakechris/mtail',
license='MIT',
keywords=['tail', 'ssh', 'multiple'],
description='Tail multiple files from local and remote ssh hosts.',
long_description=open('README.md').read(),
scripts = ['mtail/mtail'],
install_requires = ["tailer", "ssh", "python-gflags"],
classifiers = [
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: POSIX",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
'Topic :: System :: Logging',
'Topic :: Text Processing',
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: System Shells",
"Topic :: System :: Systems Administration",
],
)
if __name__ == '__main__':
main()