Mercurial > hg > CommandParser
comparison setup.py @ 12:e0a3148e67a8
bug fix and a short overhaul of documentation
| author | Jeff Hammel <jhammel@mozilla.com> |
|---|---|
| date | Mon, 28 Jan 2013 19:54:36 -0800 |
| parents | 03db23600c1f |
| children | d277ee510157 |
comparison
equal
deleted
inserted
replaced
| 11:03db23600c1f | 12:e0a3148e67a8 |
|---|---|
| 2 setup packaging script for CommandParser | 2 setup packaging script for CommandParser |
| 3 """ | 3 """ |
| 4 | 4 |
| 5 import os | 5 import os |
| 6 | 6 |
| 7 version = "0.1.3" | 7 version = "0.2" |
| 8 dependencies = [] | 8 dependencies = [] |
| 9 | 9 |
| 10 try: | 10 try: |
| 11 import json | 11 import json |
| 12 except ImportError: | 12 except ImportError: |
| 37 long_description=description, | 37 long_description=description, |
| 38 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | 38 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
| 39 author='Jeff Hammel', | 39 author='Jeff Hammel', |
| 40 author_email='jhammel@mozilla.com', | 40 author_email='jhammel@mozilla.com', |
| 41 url='http://k0s.org/hg/CommandParser', | 41 url='http://k0s.org/hg/CommandParser', |
| 42 license='', | 42 license='MPL', |
| 43 packages=['commandparser'], | 43 packages=['commandparser'], |
| 44 include_package_data=True, | 44 include_package_data=True, |
| 45 zip_safe=False, | 45 zip_safe=False, |
| 46 **kw | 46 **kw |
| 47 ) | 47 ) |
