Browse Source

Merged svisser's changes

pull/2/head
chriskiehl 10 years ago
parent
commit
03639b628a
1 changed files with 5 additions and 2 deletions
  1. 7
      setup.py

7
setup.py

@ -1,5 +1,8 @@
from distutils.core import setup from distutils.core import setup
with open('README.md') as readme:
long_description = readme.read()
setup( setup(
name='Gooey', name='Gooey',
version='0.1.0', version='0.1.0',
@ -15,5 +18,5 @@ setup(
url='http://pypi.python.org/pypi/Gooey/', url='http://pypi.python.org/pypi/Gooey/',
license='LICENSE.txt', license='LICENSE.txt',
description='Turn (almost) any command line program into a full GUI application with one line', description='Turn (almost) any command line program into a full GUI application with one line',
long_description=open('README.md').read()
)
long_description=long_description
)
Loading…
Cancel
Save