0
|
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
|