-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·23 lines (22 loc) · 897 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
from setuptools import setup
if __name__ == "__main__":
setup(
name='pytest-pep8',
description='pytest plugin to check PEP8 requirements',
long_description=open("README.txt").read(),
license="MIT license",
version='1.0.7.dev1',
author='Holger Krekel and Ronny Pfannschmidt',
author_email='holger.krekel@gmail.com',
url='http://bitbucket.org/hpk42/pytest-pep8/',
py_modules=['pytest_pep8'],
entry_points={'pytest11': ['pep8 = pytest_pep8']},
install_requires=['pytest-cache', 'pytest>=2.4.2', 'pep8>=1.3', ],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'
],
)