1__version__ = '0.3'
2
3from setuptools import setup
4README = open('README.txt').read()
5CHANGES = open('CHANGES.txt').read()
6
7setup(
8    name="eggtestinfo",
9    version=__version__,
10    description="Add test information to .egg-info",
11    author="Tres Seaver",
12    author_email="tseaver@palladion.com",
13    license="PSF or ZPL",
14    long_description = '\n\n'.join(('', README,CHANGES)),
15    keywords = "setuptools eggs testing",
16    url = "http://pypi.python.org/pypi/eggtestinfo",
17    packages = (),
18    py_modules = ['eggtestinfo'],
19    zip_safe = True,
20    test_suite = 'test_egginfo',
21
22    entry_points = {
23
24        "egg_info.writers": [
25            "test_info.txt = eggtestinfo:write_test_info",
26        ],
27
28    },
29    classifiers = [f.strip() for f in """
30    Development Status :: 3 - Alpha
31    Framework :: Setuptools Plugin
32    Intended Audience :: Developers
33    License :: OSI Approved :: Python Software Foundation License
34    License :: OSI Approved :: Zope Public License
35    Operating System :: OS Independent
36    Programming Language :: Python :: 2
37    Programming Language :: Python :: 3
38    Topic :: Software Development :: Libraries :: Python Modules
39    Topic :: System :: Archiving :: Packaging""".splitlines() if f.strip()],
40)
41