|
@ -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 |
|
|
|
|
|
) |