3 from distutils
.core
import setup
7 description
='Literate programming with reStructuredText',
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`_
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
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/',
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'
50 scripts
=['rstdocs/download/pylit'],
51 package_dir
= {'': 'src'},
52 py_modules
= ['pylit']