-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (31 loc) · 880 Bytes
/
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
from setuptools import setup
with open("readme.md", "r") as fh:
long_description = fh.read()
exec(open('commentary/version.py').read())
setup(
name='commentary',
version=__version__,
description='comment-preserving docx <-- --> markdown converter',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hdb/commentary",
author='Hudson Bailey',
author_email='[email protected]',
license='MIT',
packages=['commentary'],
package_data = {
'commentary': ['data/*.json']
},
classifiers=(
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
),
install_requires=[
'pypandoc>=1.4',
'pandocfilters==1.5.0'
],
scripts=[
'bin/commentary',
'filter/commentary-filter'
]
)