Mercurial > hg > martINI
comparison setup.py @ 0:3c3522ce6e3a
initial import of martINI from https://svn.openplans.org/svn/standalone/martINI/
| author | k0s <k0scist@gmail.com> |
|---|---|
| date | Tue, 08 Dec 2009 15:13:28 -0500 |
| parents | |
| children | 5627074cd79b |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:3c3522ce6e3a |
|---|---|
| 1 from setuptools import setup, find_packages | |
| 2 import sys, os | |
| 3 | |
| 4 version = '0.2.3' | |
| 5 | |
| 6 setup(name='martINI', | |
| 7 version=version, | |
| 8 description="edit .ini files from the command line", | |
| 9 long_description="""\ | |
| 10 """, | |
| 11 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | |
| 12 keywords='ini cli', | |
| 13 author='Jeff Hammel', | |
| 14 author_email='jhammel@openplans.org', | |
| 15 url='http://k0s.org', | |
| 16 license='GPL', | |
| 17 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
| 18 include_package_data=True, | |
| 19 zip_safe=False, | |
| 20 install_requires=[ | |
| 21 # -*- Extra requirements: -*- | |
| 22 'WebOb', | |
| 23 'Paste', | |
| 24 'PasteScript', | |
| 25 'genshi' | |
| 26 ], | |
| 27 entry_points=""" | |
| 28 # -*- Entry points: -*- | |
| 29 [console_scripts] | |
| 30 ini-get = martini.main:get | |
| 31 ini-set = martini.main:set | |
| 32 ini-delete = martini.main:delete | |
| 33 | |
| 34 [paste.app_factory] | |
| 35 main = martini.web:factory | |
| 36 """, | |
| 37 ) |
