Browse Source

closes #359 - setup.py out of date

pull/473/head
Chris 5 years ago
parent
commit
71f628f41a
1 changed files with 5 additions and 4 deletions
  1. 9
      setup.py

9
setup.py

@ -14,7 +14,7 @@ deps = [
]
if sys.version[0] == '3':
deps.append('wxpython>=4.0.0b1')
deps.append('wxpython>=4.0.2')
setup(
@ -36,8 +36,9 @@ setup(
'Topic :: Desktop Environment',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Widget Sets',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7'
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License'
],
long_description='''
@ -67,5 +68,5 @@ Gooey is attached to your code via a simple decorator on your `main` method.
With the decorator attached, run your program and the GUI will now appear!
Note: PyPi's formatting is ancient, so checkout the full documentation, instructions, and source on `Github <https://github.com/chriskiehl/Gooey>`_'''
Checkout the full documentation, instructions, and source on `Github <https://github.com/chriskiehl/Gooey>`_'''
)
Loading…
Cancel
Save