Mercurial > mozilla > hg > DocumentIt
annotate setup.py @ 25:0ce6b501f62d
first real version
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Wed, 03 Aug 2011 19:59:58 -0700 |
parents | 3464eda1af80 |
children | ce7cbf3e08e1 |
rev | line source |
---|---|
0 | 1 import os |
2 from setuptools import setup | |
3 | |
4 try: | |
5 here = os.path.dirname(os.path.abspath(__file__)) | |
6 description = file(os.path.join(here, 'README.txt')).read() | |
7 except IOError: | |
8 description = None | |
9 | |
25 | 10 version = '0.1' |
0 | 11 |
3 | 12 deps = ['Markdown'] |
0 | 13 |
14 setup(name='document_it', | |
15 version=version, | |
16 description="mirror text documentation to MDN", | |
17 long_description=description, | |
18 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | |
19 keywords='mozilla', | |
20 author='Jeff Hammel', | |
21 author_email='jhammel@mozilla.com', | |
22 url='http://k0s.org/mozilla/hg/DocumentIt', | |
23 license='MPL', | |
24 py_modules=['document_it'], | |
25 packages=[], | |
26 include_package_data=True, | |
27 zip_safe=False, | |
28 install_requires=deps, | |
29 entry_points=""" | |
30 # -*- Entry points: -*- | |
31 [console_scripts] | |
5
3464eda1af80
better formatting for command line
Jeff Hammel <jhammel@mozilla.com>
parents:
3
diff
changeset
|
32 document-it = document_it:main |
0 | 33 """, |
34 ) | |
35 |