forked from six8/pytailer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (38 loc) · 1.4 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
from distutils.core import setup
def main():
setup(
name = 'tailer',
packages=['tailer'],
package_dir = {'':'src'},
version = open('VERSION.txt').read().strip(),
author='Mike Thornton',
author_email='[email protected]',
url='http://github.com/six8/pytailer',
download_url='http://github.com/six8/pytailer',
license='MIT',
keywords=['tail', 'head'],
description='Python tail is a simple implementation of GNU tail and head.',
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",
],
long_description=open('README.rst').read(),
entry_points = {
'console_scripts': [
'pytail = tailer:main',
],
},
)
if __name__ == '__main__':
main()