Fixed setup stuff. Python setuptools really is a pain.
This commit is contained in:
parent
ea24fc5026
commit
26bf093af7
148 changed files with 13 additions and 191 deletions
15
setup.py
15
setup.py
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue