recommonmark/setup.py

27 lines
745 B
Python
Raw Normal View History

2013-08-25 16:45:13 +02:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
File: setup.py
2014-10-17 22:29:41 +02:00
Author: Steve Genoud and Luca Barbato
Date: 2014-10-17
2013-08-25 16:45:13 +02: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
2014-10-17 22:29:41 +02:00
setup(name='recommonmark',
version=recommonmark.__version__,
2013-08-25 16:45:13 +02:00
install_requires=[
2016-01-05 13:52:40 -08:00
'commonmark>=0.5.4',
2013-08-25 16:45:13 +02:00
'docutils>=0.11'
],
entry_points={'console_scripts': [
2014-10-17 22:29:41 +02:00
'cm2html = recommonmark.scripts:cm2html',
'cm2latex = recommonmark.scripts:cm2latex',
'cm2man = recommonmark.scripts:cm2man',
'cm2pseudoxml = recommonmark.scripts:cm2pseudoxml',
'cm2xetex = recommonmark.scripts:cm2xetex',
'cm2xml = recommonmark.scripts:cm2xml',
2013-08-25 16:45:13 +02:00
]},
2014-10-17 22:29:41 +02:00
packages=['recommonmark']
2013-08-25 16:45:13 +02:00
)