-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
require and use the new pytest-caching plugin, implement mtime-checking
- Loading branch information
Showing
6 changed files
with
262 additions
and
71 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
from setuptools import setup | ||
setup( | ||
name='pytest-pep8', | ||
description='pytest plugin to check source code against PEP8 requirements', | ||
long_description=open("README.txt").read(), | ||
version='0.9.2.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>=2.0', 'pep8>=1.3', ], | ||
) | ||
|
||
if __name__ == "__main__": | ||
setup( | ||
name='pytest-pep8', | ||
description='pytest plugin to check PEP8 requirements', | ||
long_description=open("README.txt").read(), | ||
version='0.9.2.dev2', | ||
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>=2.0', 'pep8>=1.3', ], | ||
) |
Oops, something went wrong.