-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (22 loc) · 853 Bytes
/
setup.py
File metadata and controls
executable file
·25 lines (22 loc) · 853 Bytes
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
#!/usr/bin/env python
# Repo was forked from Alexey Loshkarev. I am just updating for python3.
from setuptools import setup, find_packages
version = '1.1'
if __name__ == '__main__':
setup(name='pytailf2',
version=version,
description='Simple python tail -f wrapper',
author='Anthony Guevara',
author_email='amboxer21@gmail.com',
url='',
packages=find_packages(),
license='GPL',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)