Created
April 22, 2015 18:12
-
-
Save hpk42/df4a9a0d26d51f261c34 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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='[email protected]', | |
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' | |
], | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment