forked from bgreenlee/pygtail
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
91 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
*.pyc | ||
*.egg-info | ||
.coverage | ||
build | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
pygtail (0.2) lucid; urgency=low | ||
|
||
* Add setup.py and debianize. | ||
|
||
-- Brad Greenlee <[email protected]> Wed, 05 Jul 2011 15:04:42 -0700 | ||
|
||
pygtail (0.1) lucid; urgency=low | ||
|
||
* Initial release. | ||
|
||
-- Brad Greenlee <[email protected]> Wed, 29 Jun 2011 22:33:12 -0700 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Source: pygtail | ||
Section: python | ||
Priority: optional | ||
Maintainer: Brad Greenlee <[email protected]> | ||
Build-Depends: debhelper (>= 7) | ||
Build-Depends-Indep: python-support, python-setuptools | ||
Standards-Version: 3.8.3 | ||
Homepage: http://github.com/bgreenlee/pygtail | ||
|
||
Package: pygtail | ||
Architecture: all | ||
Depends: ${misc:Depends}, ${python:Depends} | ||
Description: Reads log file lines that have not been read. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Copyright: 2011 Brad Greenlee <[email protected]> | ||
License: GPL v2 | ||
http://www.gnu.org/licenses/gpl-2.0.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/make -f | ||
|
||
%: | ||
dh $@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
from core import __version__ | ||
from core import Pygtail |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import os | ||
from setuptools import setup | ||
|
||
from pygtail import __version__ | ||
|
||
def main(): | ||
cwd = os.path.dirname(os.path.abspath(__file__)) | ||
path = os.path.join(cwd, 'README.md') | ||
readme = open(path, 'rb').read() | ||
|
||
setup( | ||
name = 'pygtail', | ||
version = __version__, | ||
description = 'Reads log file lines that have not been read.', | ||
license = 'GPL v2', | ||
author = 'Brad Greenlee', | ||
author_email = '[email protected]', | ||
keywords = ['logging', 'tail', 'logtail2'], | ||
url = 'http://github.com/bgreenlee/pygtail', | ||
packages = ['pygtail'], | ||
entry_points = { | ||
'console_scripts': ['pygtail=pygtail.core:main'] | ||
}, | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: GNU General Public License (GPL)", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: POSIX :: Linux", | ||
"Operating System :: Unix", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 2.6", | ||
"Programming Language :: Python :: 2.7", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: System :: Logging" | ||
], | ||
long_description = readme | ||
) | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |