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