pylit 0.7.10
[pylit.git] / setup.py
blob6a2edff43d9cc3efeb892ca88317d21d81664b47
1 #!/usr/bin/python
2 # coding=utf-8
3 from distutils.core import setup
5 setup(name='PyLit',
6 # version='0.7.9',
7 description='Literate programming with reStructuredText',
8 long_description="""
10 PyLit (Python Literate) provides a plain but efficient tool for `literate
11 programming`_: a bidirectional text/code converter.
13 The idea is that you do not document programs (after the fact), but
14 write documents that *contain* the programs.
16 -- John Max Skaller in a `Charming Python interview`_
18 Features
19 --------
21 * `Dual Source`_
22 * Simplicity
23 * Markup with reStructuredText_
24 * Python Doctest Support
26 .. _Charming Python interview:
27 http://www.ibm.com/developerworks/library/l-pyth7.html
28 .. _reStructuredText: http://docutils.sourceforge.net/rst.html
29 .. _dual source: http://pylit.berlios.de/features.html#dual-source
30 .. _literate programming: http://pylit.berlios.de/literate-programming.html
31 """,
32 author='Guenter Milde',
33 author_email='milde@users.sf.net',
34 url='http://pylit.berlios.de/',
35 download_url='http://pylit.berlios.de/download/',
36 classifiers=[
37 'Development Status :: 4 - Beta',
38 'Environment :: Console',
39 'Intended Audience :: Developers',
40 'License :: OSI Approved :: GNU General Public License (GPL)',
41 'Natural Language :: English',
42 'Natural Language :: German',
43 'Operating System :: OS Independent',
44 'Programming Language :: Python :: 2.4',
45 'Topic :: Software Development :: Documentation',
46 'Topic :: Software Development :: User Interfaces',
47 'Topic :: Text Processing :: Markup'
49 provides=['pylit'],
50 scripts=['rstdocs/download/pylit'],
51 package_dir = {'': 'src'},
52 py_modules = ['pylit']