Mercurial > hg > wordstream
comparison setup.py @ 0:8af3412e907a
initial import of wordstream
author | k0s <k0scist@gmail.com> |
---|---|
date | Fri, 01 Jan 2010 19:35:32 -0500 |
parents | |
children | df84e61ae1e4 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:8af3412e907a |
---|---|
1 from setuptools import setup, find_packages | |
2 | |
3 version = "0.0" | |
4 | |
5 setup(name='wordstream', | |
6 version=version, | |
7 description="word streamer", | |
8 long_description=""" | |
9 """, | |
10 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | |
11 author='Jeff Hammel', | |
12 author_email='k0scist@gmail.com', | |
13 url='http://k0s.org', | |
14 license="", | |
15 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
16 include_package_data=True, | |
17 zip_safe=False, | |
18 install_requires=[ | |
19 # -*- Extra requirements: -*- | |
20 'WebOb', | |
21 'Paste', | |
22 'PasteScript', | |
23 'genshi' | |
24 ], | |
25 entry_points=""" | |
26 # -*- Entry points: -*- | |
27 [paste.app_factory] | |
28 wordstream = wordstream.factory:factory | |
29 | |
30 [console_scripts] | |
31 wordstream = wordstream.main:main | |
32 """, | |
33 ) | |
34 |