a couple of more fixes

This commit is contained in:
Anthony Scopatz 2015-04-02 21:08:17 -05:00
parent 18ec209556
commit bd25f6638e
2 changed files with 5 additions and 1 deletions

View file

@ -21,6 +21,10 @@ pylint:
- too-many-lines
- import-self
- redefined-outer-name
- invalid-name
- too-few-public-methods
- no-init
- star-args
mccabe:
disable:

View file

@ -65,7 +65,7 @@ def main():
author_email='scopatz@gmail.com',
url='https://github.com/scopatz/xonsh',
platforms='Cross Platform',
classifiers = ['Programming Language :: Python :: 3'],
classifiers=['Programming Language :: Python :: 3'],
packages=['xonsh'],
scripts=['scripts/xonsh'],
cmdclass={'install': xinstall, 'sdist': xsdist},