-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (34 loc) · 1.34 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
# TODO: make a nicer setup.py from https://github.com/navdeep-G/setup.py
setup(
name="mdtools",
version='2.1.3',
packages=find_packages(exclude=["tests", "*.tests", "*.tests.*", "tests.*"]),
install_requires=['polib'],
author="Bernhard Bockelbrink",
description="A commandline tools for publishing various document formats (Jekyll, LaTeX, ePub etc.) from a single markdown source.",
long_description=read("README.md"),
keywords="single-source-publishing Markdown reveal.js slide-decks i18n LaTeX ePub Multimarkdown Jekyll GitHub-pages",
url="https://github.com/bboc/mdtools",
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 4 - Beta",
'Operating System :: MacOS :: MacOS X',
"Environment :: Console",
"Programming Language :: Python :: 3.0",
"Topic :: Utilities"
],
entry_points={
'console_scripts': [
'mdbuild = mdbuild.main:main_build',
'mdtemplate = mdbuild.main:main_template',
'mdimg = mdimg.command:main',
'mddiff = diff:main',
],
}
)