"Fossies" - the Fresh Open Source Software Archive 
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Python source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "setup.py" see the
Fossies "Dox" file reference documentation.
1 from setuptools import setup
2
3 version = '1.3.1'
4
5 setup(name='tcpwatch',
6 version=version,
7 description="TCP monitoring and logging tool with support for HTTP 1.1",
8 long_description= open('README.txt').read() + '\n\n' +
9 open('CHANGES.txt').read(),
10 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
11 keywords='tcp monitor proxy',
12 author='Shane Hathaway',
13 author_email='shane@zope.com',
14 url='http://hathawaymix.org/Software/TCPWatch',
15 py_modules = ['tcpwatch'],
16 package_data = {
17 '': ['*.txt', '*.rst']
18 },
19 license="ZPL 2.0",
20 zip_safe=False,
21 install_requires=[],
22 entry_points= {
23 'console_scripts': [
24 'tcpwatch = tcpwatch:run_main',
25 ],
26 },
27 )