# HG changeset patch # User k0s # Date 1267579095 18000 # Node ID 9e4da751781569e9ddaaca2ae8f4c688268d0a50 # Parent d172c078f4a2973872a8349ca978a837d77842b9 make a README file and include it in the setup.py diff -r d172c078f4a2 -r 9e4da7517815 README.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README.txt Tue Mar 02 20:18:15 2010 -0500 @@ -0,0 +1,34 @@ +martINI +======= + +martINI is an extended facility for utilizing +`ini files `_ in python. +martINI includes API, command-line, and web interfaces. +martINI is built on the +`ConfigParser `_ module, +which is part of python's standard library. + + +Command Line Tools +------------------ + +martINI comes with several command line tools for manipulating .ini +files: + + * ini-get: get key or section values from a .ini files + * ini-set: set .ini file values + * ini-delete: delete .ini key-value pairs from a .ini files + * ini-munge: combine several .ini files + +Running the commands will display usage information. + + +TODO +---- + +Consider refactoring to use +`INITools `_ instead of ``ConfigParser``. + +-- + +http://k0s.org/portfolio/software.html#martini diff -r d172c078f4a2 -r 9e4da7517815 setup.py --- a/setup.py Tue Dec 08 16:23:50 2009 -0500 +++ b/setup.py Tue Mar 02 20:18:15 2010 -0500 @@ -1,13 +1,17 @@ from setuptools import setup, find_packages import sys, os -version = '0.3.1' +try: + description = file('README.txt').read() +except: + description = '' + +version = '0.3.2' setup(name='martINI', version=version, description="edit .ini files from the command line", - long_description="""\ -""", + long_description=description, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='ini cli', author='Jeff Hammel',