forked from derpston/python-multitail2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (15 loc) · 627 Bytes
/
setup.py
File metadata and controls
18 lines (15 loc) · 627 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python
from distutils.core import setup
setup(
name = 'multitail2'
, version = '1.5.2'
, description = 'Enables following multiple files for new lines at once, automatically handling file creation/deletion/rotation'
, long_description = """Accepts a glob spec like '/var/log/\*.log' and \
adds/removes/reopens files as they are created, deleted, and rotated."""
, author = 'Derp Ston'
, author_email = 'derpston+pypi@sleepygeek.org'
, url = 'https://github.com/derpston/python-multitail2'
, packages = ['']
, package_dir = {'': 'src'}
, install_requires=['six']
)