Mercurial > hg > smartopen
comparison setup.py @ 5:7328744920de
adding README file
| author | k0s <k0scist@gmail.com> |
|---|---|
| date | Wed, 03 Mar 2010 01:07:17 -0500 |
| parents | 01015b36290a |
| children | a03adefacb62 |
comparison
equal
deleted
inserted
replaced
| 4:01015b36290a | 5:7328744920de |
|---|---|
| 1 from setuptools import setup, find_packages | 1 from setuptools import setup, find_packages |
| 2 import sys, os | 2 import sys, os |
| 3 | |
| 4 try: | |
| 5 description = file('README.txt').read() | |
| 6 except: | |
| 7 description = '' | |
| 3 | 8 |
| 4 version = '0.1.1' | 9 version = '0.1.1' |
| 5 | 10 |
| 6 setup(name='smartopen', | 11 setup(name='smartopen', |
| 7 version=version, | 12 version=version, |
| 8 description="open text in a browser contextually", | 13 description="open text in a browser contextually", |
| 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='', | 16 keywords='', |
| 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/smartopen', | 19 url='http://k0s.org/hg/smartopen', |
