forked from ds-wizard/document-worker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (37 loc) · 1.07 KB
/
Copy pathsetup.py
File metadata and controls
40 lines (37 loc) · 1.07 KB
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
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = ''.join(f.readlines())
setup(
name='document_worker',
version='2.3.0',
description='Worker for assembling and transforming documents',
long_description=long_description,
long_description_content_type='text/markdown',
author='Marek Suchánek',
keywords='documents worker jinja2 pandoc pdf-generation',
license='Apache License 2.0',
url='https://github.com/ds-wizard/document-worker',
packages=find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Text Processing',
],
zip_safe=False,
python_requires='>=3.8, <4',
install_requires=[
'click',
'pika',
'pymongo',
'jinja2',
'markdown2',
'tenacity',
'PyYAML',
],
entry_points={
'console_scripts': [
'docworker=document_worker:main',
],
},
)