Browse CVS Repository
Contents of /mixedmark/mm2xhtml/setup.py
Parent Directory
| Revision Log
| Revision Graph
Revision 1.2 -
( show annotations)
( download)
( as text)
Mon May 28 03:45:15 2007 UTC
(16 years, 10 months ago)
by ksaito0717
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +1 -1 lines
File MIME type: text/x-python
fix.
| 1 |
from distutils.core import setup, Extension |
| 2 |
|
| 3 |
setup(name='mm2xhtml', |
| 4 |
version='0.10', |
| 5 |
description='MixedMark command utility', |
| 6 |
author='Kenji Saito', |
| 7 |
author_email='ksaito@do-johodai.ac.jp', |
| 8 |
url='http://mixedmark.sourceforge.jp/', |
| 9 |
package_dir={'': 'src'}, |
| 10 |
packages=['mm2xhtml', 'mm2xhtml.swap'], |
| 11 |
package_data={'mm2xhtml': ['mixedmark.ent']}, |
| 12 |
ext_modules=[Extension('mm2xhtml.itex2mml',['itexToMML/itex2MML.cc','itexToMML/lex.yy.c','itexToMML/y.tab.c'])], |
| 13 |
scripts=['scripts/mm2xhtml','scripts/mmServer','scripts/markdown'] |
| 14 |
) |
| |