-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 1.11 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
setup(
name='amd2pdf',
version='0.1.3',
description='Another markdown to pdf with TOC and page index support',
long_description='This is another markdown to pdf conversion tool. '
'This includes TOC markdown tag support and the generated '
'output is page indexed.',
author='david weil',
author_email='[email protected]',
license="GNU General Public License v3.0",
url='https://github.com/tenuki/amd2pdf',
packages=find_packages(exclude=('tests', 'docs')),
package_data={
# If any package contains *.txt files, include them:
#"": ["*.txt"],
# And include any *.dat files found in the "data" subdirectory
# of the "mypkg" package, also:
"amd2pdf": ["rsrc/*.css", "*.js"],
},
install_requires=['doit', 'jinja2'],
python_requires='>=3',
entry_points={
'console_scripts': [
"amd2pdf=amd2pdf:main"
]
}
)