Skip to content

Instantly share code, notes, and snippets.

@hpk42
Created April 22, 2015 18:12
Show Gist options
  • Save hpk42/df4a9a0d26d51f261c34 to your computer and use it in GitHub Desktop.
Save hpk42/df4a9a0d26d51f261c34 to your computer and use it in GitHub Desktop.
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'
],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment