Skip to content

Commit

Permalink
Cleaned up setup.py
Browse files Browse the repository at this point in the history
* Removed old vim config line.
* Removed useless empty line.
  • Loading branch information
tramjoe committed Sep 21, 2011
1 parent fb2bfe9 commit 811cf14
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions setup.py
Expand Up @@ -28,14 +28,13 @@
SCRIPTS = []
DESCRIPTION = PKG.__description__

setup(
name=PKG.__name__,
description=DESCRIPTION,
version=VERSION,
author=AUTHOR,
author_email=EMAIL,
license=LICENSE,
url=URL,
scripts=SCRIPTS,
packages=[PKG.__name__],
package_data = {'':[]})
setup(name=PKG.__name__,
description=DESCRIPTION,
version=VERSION,
author=AUTHOR,
author_email=EMAIL,
license=LICENSE,
url=URL,
scripts=SCRIPTS,
packages=[PKG.__name__],
package_data = {'':[]})

0 comments on commit 811cf14

Please sign in to comment.