|
|
@ -1,35 +1,25 @@ |
|
|
|
import os |
|
|
|
"""Script for setuptools.""" |
|
|
|
|
|
|
|
from setuptools import setup, find_packages |
|
|
|
|
|
|
|
|
|
|
|
with open('README.md') as readme: |
|
|
|
long_description = readme.read() |
|
|
|
|
|
|
|
local_path = os.path.join(os.path.dirname(__file__), 'gooey') |
|
|
|
|
|
|
|
imagepath = os.path.join(local_path, 'images') |
|
|
|
langpath = os.path.join(local_path, 'languages') |
|
|
|
|
|
|
|
images = [os.path.join(imagepath, image) for image in os.listdir(imagepath)] |
|
|
|
long_description = readme.read() |
|
|
|
|
|
|
|
languages = [os.path.join(langpath, lang) |
|
|
|
for lang in os.listdir(langpath) |
|
|
|
if '.py' not in lang] |
|
|
|
version = __import__('gooey').__version__ |
|
|
|
|
|
|
|
setup( |
|
|
|
name='Gooey', |
|
|
|
version='0.1.0', |
|
|
|
version=version, |
|
|
|
url='http://pypi.python.org/pypi/Gooey/', |
|
|
|
author='Chris Kiehl', |
|
|
|
author_email='audionautic@gmail.com', |
|
|
|
package_data={ |
|
|
|
'': ['*.txt', '*.png', '*.jpg', '*.json', '*.ico', '*.gif'] |
|
|
|
}, |
|
|
|
description=('Turn (almost) any command line program into a full GUI ' |
|
|
|
'application with one line'), |
|
|
|
license='MIT', |
|
|
|
packages=find_packages(), |
|
|
|
url='http://pypi.python.org/pypi/Gooey/', |
|
|
|
dependency_links = [ |
|
|
|
"http://www.wxpython.org/download.php" |
|
|
|
], |
|
|
|
license='LICENSE.txt', |
|
|
|
include_package_data=True, |
|
|
|
dependency_links = ["http://www.wxpython.org/download.php"], |
|
|
|
classifiers = [ |
|
|
|
'Development Status :: 4 - Beta', |
|
|
|
'Intended Audience :: Developers', |
|
|
@ -37,6 +27,5 @@ setup( |
|
|
|
'Programming Language :: Python :: 2.6', |
|
|
|
'Programming Language :: Python :: 2.7' |
|
|
|
], |
|
|
|
description='Turn (almost) any command line program into a full GUI application with one line', |
|
|
|
long_description=long_description |
|
|
|
) |