-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
36 lines (33 loc) · 1.08 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
# encoding: utf-8
from setuptools import setup
from panzer.version import VERSION
with open('README.rst', 'r', encoding='utf8') as file:
readme_text = file.read()
setup(name='panzer',
version=VERSION,
description='pandoc with styles',
long_description=readme_text,
url='https://github.com/msprev/panzer',
author='Mark Sprevak',
author_email='[email protected]',
license='LICENSE.txt',
packages=['panzer'],
install_requires=['pandocfilters'],
include_package_data=True,
keywords=['pandoc'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Text Processing'
],
entry_points = {
'console_scripts': [
'panzer = panzer.panzer:main'
]
},
zip_safe=False)