-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
12f0657
commit 1c47f56
Showing
4 changed files
with
21 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
""" | ||
Pylint runner | ||
""" | ||
|
||
__author__ = "Matthew Peveler" | ||
__license__ = "The MIT License (MIT)" | ||
__version__ = "0.4.1" |
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 |
---|---|---|
|
@@ -7,6 +7,8 @@ | |
from pip.download import PipSession | ||
from setuptools import setup | ||
|
||
from pylint_runner import __author__, __version__ | ||
|
||
|
||
def read(*paths): | ||
"""Build a file path from *paths* and return the contents.""" | ||
|
@@ -22,11 +24,11 @@ def get_requirements(): | |
|
||
setup( | ||
name='pylint_runner', | ||
version='0.4.0', | ||
version=__version__, | ||
packages=['pylint_runner'], | ||
url='http://github.com/MasterOdin/pylint_runner', | ||
license='MIT', | ||
author='Matthew Peveler', | ||
author=__author__, | ||
author_email='[email protected]', | ||
description='Run pylint recursively on all py files in current and sub directories', | ||
# long_description=open('README.rst').read() + '\n\n' + open('CHANGELOG.rst').read(), | ||
|
@@ -38,7 +40,8 @@ def get_requirements(): | |
install_requires=get_requirements(), | ||
tests_require=['nose'], | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Development Status :: 4 - Beta', | ||
'Environment :: Console', | ||
'Topic :: Software Development :: Debuggers', | ||
'Topic :: Software Development :: Quality Assurance', | ||
'Topic :: Software Development :: Testing', | ||
|