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__,
|
2018-07-24 12:17:09 +02:00
|
|
|
description=('A docutils-compatibility bridge to CommonMark, '
|
|
|
|
'enabling you to write CommonMark '
|
|
|
|
'inside of Docutils & Sphinx projects.'),
|
|
|
|
url='https://github.com/rtfd/recommonmark',
|
|
|
|
license='MIT',
|
|
|
|
classifiers=[
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
],
|
2017-02-17 01:04:04 -08:00
|
|
|
install_requires=[
|
2019-03-18 20:52:17 -04:00
|
|
|
'commonmark>=0.8.1',
|
2017-02-17 01:04:04 -08:00
|
|
|
'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']
|
|
|
|
)
|