Mercurial > hg > martINI
comparison setup.py @ 3:9e4da7517815
make a README file and include it in the setup.py
author | k0s <k0scist@gmail.com> |
---|---|
date | Tue, 02 Mar 2010 20:18:15 -0500 |
parents | d172c078f4a2 |
children | 77c7556fa8e0 |
comparison
equal
deleted
inserted
replaced
2:d172c078f4a2 | 3:9e4da7517815 |
---|---|
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.3.1' | 4 try: |
5 description = file('README.txt').read() | |
6 except: | |
7 description = '' | |
8 | |
9 version = '0.3.2' | |
5 | 10 |
6 setup(name='martINI', | 11 setup(name='martINI', |
7 version=version, | 12 version=version, |
8 description="edit .ini files from the command line", | 13 description="edit .ini files from the command line", |
9 long_description="""\ | 14 long_description=description, |
10 """, | |
11 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | 15 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
12 keywords='ini cli', | 16 keywords='ini cli', |
13 author='Jeff Hammel', | 17 author='Jeff Hammel', |
14 author_email='k0scist@gmail.com', | 18 author_email='k0scist@gmail.com', |
15 url='http://k0s.org/hg/martINI', | 19 url='http://k0s.org/hg/martINI', |