[Zope-CVS] CVS: Packages/tcpwatch - MANIFEST.in:1.1 setup.cfg:1.1 setup.py:1.1
Tres Seaver
tseaver@zope.com
Sat, 24 May 2003 13:14:39 -0400
Update of /cvs-repository/Packages/tcpwatch
In directory cvs.zope.org:/tmp/cvs-serv11909
Added Files:
MANIFEST.in setup.cfg setup.py
Log Message:
- Add distutils packaging.
=== Added File Packages/tcpwatch/MANIFEST.in ===
include MANIFEST
include MANIFEST.in
include README
global-exclude *~ .*~
=== Added File Packages/tcpwatch/setup.cfg ===
[bdist_rpm]
release = 1.1
packager = Tres Seaver <tseaver@zope.com>
=== Added File Packages/tcpwatch/setup.py ===
#!/usr/bin/env python
from distutils.core import setup
from distutils.sysconfig import get_python_lib
setup( name="tcpwatch"
, version="1.1"
, description="Connection forwarder / HTTP proxy"
, author="Shane Hathaway"
, author_email="shane@zope.com"
, url="http://cvs.zope.org/Packages/tcpwatch/"
, py_modules=[ 'tcpwatch' ]
, scripts=[ 'launch' ]
)