forked from linux-wizard/timegrep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (21 loc) · 819 Bytes
/
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
#!/usr/bin/env python
from distutils.core import setup
setup(name='timegrep',
version='1.5',
description='Perform a binary search through a log file to find a range of times and print the corresponding lines',
author='Fabrice FACORAT',
author_email='fabrice.facorat@gmail.com',
url='https://github.com/linux-wizard/timegrep',
scripts = ["timegrep"],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: System Administrators',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Utilities',
'Topic :: System :: Systems Administration'
]
)