Preparing 0.3.1 release
[third_party/pep8] / setup.py
1 from setuptools import setup, find_packages
2
3 version = '0.3.1'
4 long_description = '\n\n'.join([open('README.txt').read(),
5                                 open('CHANGES.txt').read(),
6                                 open('TODO.txt').read()])
7
8 setup(name='pep8',
9       version=version,
10       description="Python style guide checker",
11       long_description=long_description,
12       classifiers=[],
13       keywords='pep8',
14       author='Johann C. Rocholl',
15       author_email='johann@browsershots.org',
16       url='http://github.com/cburroughs/pep8.py/tree/master',
17       license='Expat license',
18       py_modules=['pep8'],
19       namespace_packages=[],
20       include_package_data=True,
21       zip_safe=False,
22       install_requires=[
23           'setuptools',
24           # -*- Extra requirements: -*-
25       ],
26       entry_points={
27           'console_scripts': [
28               'pep8 = pep8:_main',
29               ],
30           },
31       )