-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
48 lines (44 loc) · 1.57 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
48
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'tailhead', 'version.py')) as f:
VERSION = None
code = compile(f.read(), 'version.py', 'exec')
exec(code)
assert VERSION
setup(
name='tailhead',
packages=['tailhead'],
version=VERSION,
author='Mike Thornton',
author_email='[email protected]',
maintainer='Ilya Kulakov',
maintainer_email='[email protected]',
url='https://github.com/GreatFruitOmsk/tailhead',
download_url='https://github.com/GreatFruitOmsk/tailhead/releases',
license='MIT',
keywords=['tail', 'head'],
description='tailhead is a simple implementation of GNU tail and head.',
classifiers=[
"Programming Language :: Python",
"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",
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
long_description=open('README.rst').read(),
entry_points="""
[console_scripts]
pytail=tailhead.__main__:main
"""
)