Mercurial > hg > discussions
comparison setup.py @ 0:c904249afb04
initial commit of discussions
author | k0s <k0scist@gmail.com> |
---|---|
date | Sat, 02 Jan 2010 13:36:23 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:c904249afb04 |
---|---|
1 from setuptools import setup, find_packages | |
2 | |
3 version = "0.0" | |
4 | |
5 setup(name='discusssions', | |
6 version=version, | |
7 description="mailing lists, forums are all part of discussions: a many to many conversation", | |
8 long_description=""" | |
9 """, | |
10 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | |
11 author='Jeff Hammel', | |
12 author_email='', | |
13 url='', | |
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 discusssions = discusssions.factory:factory | |
29 """, | |
30 ) | |
31 |