Fixed setup stuff. Python setuptools really is a pain.

This commit is contained in:
jaseg 2013-09-16 16:37:15 +02:00
parent ea24fc5026
commit 26bf093af7
148 changed files with 13 additions and 191 deletions

View file

@ -27,13 +27,14 @@ setup(name = 'ponysay',
author = 'jaseg',
author_email = 'ponysay@jaseg.net',
url = 'https://github.com/jaseg/ponysay',
py_modules = ['ponysay'],
data_files = [dir_copy('quotes', 'ponies'),
dir_copy('genponies', 'ponies')],
scripts = ['ponysay',
'ponythink',
'termcenter',
'ponysay-qotd'],
packages = ['ponysay'],
package_dir = {'ponysay': 'ponysay'},
package_data = {'ponysay': ['quotes/*.quotes', 'ponies/*.pony']},
entry_points = {'console_scripts': [
'ponysay=ponysay:main',
'ponythink=ponysay:main',
'ponysay-qotd=ponysay:qotd_server',
'termcenter=ponysay:termcenter']},
zip_safe = False,
classifiers = [
'Development Status :: 5 - Production/Stable',