Mercurial > hg > commentator
comparison 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 |
comparison
equal
deleted
inserted
replaced
| 8:a3f3c403b1e8 | 9:825833a5c4a7 |
|---|---|
| 1 from setuptools import setup, find_packages | 1 from setuptools import setup, find_packages |
| 2 | 2 |
| 3 try: | 3 try: |
| 4 description = file('README.txt').read() | 4 description = open('README.txt').read() |
| 5 except IOError: | 5 except IOError: |
| 6 description = '' | 6 description = '' |
| 7 | 7 |
| 8 version = "0.2.2" | 8 version = "0.2.2" |
| 9 | 9 |
| 10 setup(name='commentator', | 10 setup(name='commentator', |
| 19 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | 19 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
| 20 include_package_data=True, | 20 include_package_data=True, |
| 21 zip_safe=False, | 21 zip_safe=False, |
| 22 install_requires=[ | 22 install_requires=[ |
| 23 # -*- Extra requirements: -*- | 23 # -*- Extra requirements: -*- |
| 24 'WebOb', | 24 'WebOb', |
| 25 'Paste', | 25 'Paste', |
| 26 'PasteScript', | 26 'PasteScript', |
| 27 'genshi', | 27 'genshi', |
| 28 # 'CouchDB' | |
| 29 ], | 28 ], |
| 30 entry_points=""" | 29 entry_points=""" |
| 31 # -*- Entry points: -*- | 30 # -*- Entry points: -*- |
| 32 [paste.app_factory] | 31 [paste.app_factory] |
| 33 commentator = commentator.example:factory | 32 commentator = commentator.example:factory |
| 34 captcha_comments = commentator.example:captcha_factory | 33 captcha_comments = commentator.example:captcha_factory |
| 35 """, | 34 """, |
| 36 ) | 35 ) |
| 37 | 36 |
