forked from PyCQA/pycodestyle
-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
31 lines (29 loc) · 903 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup, find_packages
version = '0.6.0'
long_description = '\n\n'.join([open('README.rst').read(),
open('CHANGES.txt').read(),
open('TODO.txt').read()])
setup(name='pep8',
version=version,
description="Python style guide checker",
long_description=long_description,
classifiers=[],
keywords='pep8',
author='Johann C. Rocholl',
author_email='[email protected]',
url='http://github.com/jcrocholl/pep8',
license='Expat license',
py_modules=['pep8'],
namespace_packages=[],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
# -*- Extra requirements: -*-
],
entry_points={
'console_scripts': [
'pep8 = pep8:_main',
],
},
)