Mercurial > hg > fetch
comparison setup.py @ 13:3fee8ecd1af8
restructure while we still just have one module
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Wed, 09 Nov 2011 16:15:53 -0800 |
parents | 44cbfaefa85c |
children |
comparison
equal
deleted
inserted
replaced
12:a99a96f67500 | 13:3fee8ecd1af8 |
---|---|
17 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | 17 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
18 author='Jeff Hammel', | 18 author='Jeff Hammel', |
19 author_email='jhammel@mozilla.com', | 19 author_email='jhammel@mozilla.com', |
20 url='http://k0s.org/mozilla/fetch', | 20 url='http://k0s.org/mozilla/fetch', |
21 license='MPL', | 21 license='MPL', |
22 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | 22 py_modules=['fetch'], |
23 include_package_data=True, | 23 include_package_data=True, |
24 zip_safe=False, | 24 zip_safe=False, |
25 install_requires=dependencies, | 25 install_requires=dependencies, |
26 entry_points=""" | 26 entry_points=""" |
27 # -*- Entry points: -*- | 27 # -*- Entry points: -*- |
28 | |
29 [console_scripts] | 28 [console_scripts] |
30 fetch = fetch.main:main | 29 fetch = fetch:main |
31 """, | 30 """, |
32 ) | 31 ) |
33 | 32 |
34 | 33 |