Mercurial > hg > commentator
annotate setup.py @ 9:825833a5c4a7 default tip
update metadata
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 03 Nov 2020 08:18:53 -0800 |
parents | c95f1dfed329 |
children |
rev | line source |
---|---|
0 | 1 from setuptools import setup, find_packages |
2 | |
3 try: | |
9 | 4 description = open('README.txt').read() |
5 except IOError: | |
0 | 6 description = '' |
7 | |
5 | 8 version = "0.2.2" |
0 | 9 |
10 setup(name='commentator', | |
11 version=version, | |
12 description="WSGI commenting middleware", | |
13 long_description=description, | |
14 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | |
15 author='Jeff Hammel', | |
16 author_email='k0scist@gmail.com', | |
1 | 17 url='http://k0s.org/hg/commentator', |
18 license="GPL", | |
0 | 19 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
20 include_package_data=True, | |
21 zip_safe=False, | |
22 install_requires=[ | |
23 # -*- Extra requirements: -*- | |
9 | 24 'WebOb', |
0 | 25 'Paste', |
26 'PasteScript', | |
27 'genshi', | |
28 ], | |
29 entry_points=""" | |
30 # -*- Entry points: -*- | |
31 [paste.app_factory] | |
32 commentator = commentator.example:factory | |
6
c95f1dfed329
some work to get commenting + captchas working together
k0s <k0scist@gmail.com>
parents:
5
diff
changeset
|
33 captcha_comments = commentator.example:captcha_factory |
0 | 34 """, |
35 ) | |
9 | 36 |