2013-08-25 16:45:13 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
2017-02-17 01:04:04 -08:00
|
|
|
|
|
|
|
"""
|
2013-08-25 16:45:13 +02:00
|
|
|
File: setup.py
|
2014-10-17 22:29:41 +02:00
|
|
|
Author: Steve Genoud and Luca Barbato
|
|
|
|
Date: 2014-10-17
|
2017-02-17 01:04:04 -08:00
|
|
|
"""
|
|
|
|
|
2014-09-06 02:39:14 +02:00
|
|
|
from setuptools import setup
|
2014-10-17 22:29:41 +02:00
|
|
|
import recommonmark
|
2013-08-25 16:45:13 +02:00
|
|
|
|
2017-02-17 01:04:04 -08:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='recommonmark',
|
|
|
|
version=recommonmark.__version__,
|
|
|
|
install_requires=[
|
|
|
|
'commonmark>=0.7.3',
|
|
|
|
'docutils>=0.11',
|
|
|
|
'sphinx>=1.3.1',
|
|
|
|
],
|
|
|
|
entry_points={'console_scripts': [
|
|
|
|
'cm2html = recommonmark.scripts:cm2html',
|
|
|
|
'cm2latex = recommonmark.scripts:cm2latex',
|
|
|
|
'cm2man = recommonmark.scripts:cm2man',
|
|
|
|
'cm2pseudoxml = recommonmark.scripts:cm2pseudoxml',
|
|
|
|
'cm2xetex = recommonmark.scripts:cm2xetex',
|
|
|
|
'cm2xml = recommonmark.scripts:cm2xml',
|
|
|
|
]},
|
|
|
|
packages=['recommonmark']
|
|
|
|
)
|