Browse Source

Merge branch 'svisser-patch-1'

pull/2/head
chriskiehl 10 years ago
parent
commit
cbe9952176
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
with open('README.md') as readme:
long_description = readme.read()
setup(
name='Gooey',
version='0.1.0',
@ -15,5 +18,5 @@ setup(
url='http://pypi.python.org/pypi/Gooey/',
license='LICENSE.txt',
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