-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
67 lines (64 loc) · 2.05 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
from setuptools import setup, find_packages
from pdf12step import __version__ as pkg
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name=pkg.__name__,
version=pkg.__version__,
author=pkg.__author__,
author_email=pkg.__author_email__,
url=pkg.__url__,
license=pkg.__license__,
license_files=('LICENSE',),
description=pkg.__description__,
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.6',
project_urls={
'Documentation': 'https://pdf12step.readthedocs.io/',
'Source': 'https://github.com/justquick/pdf12step',
'Bug Tracker': 'https://github.com/justquick/pdf12step/issues',
'Wordpress Plugin': 'https://wordpress.org/plugins/12-step-meeting-list/',
},
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Framework :: Flask',
'Environment :: Console',
'Topic :: Documentation :: Sphinx',
'Topic :: Multimedia :: Graphics :: Presentation',
'Topic :: Text Processing :: Markup :: HTML'
],
package_data={
'pdf12step': [
'templates/*',
'templates/assets/css/*',
'templates/assets/img/*',
'templates/includes/*',
'templates/includes/sections/*',
'tests/data/*',
]
},
packages=find_packages(),
install_requires=[
'requests',
'weasyprint',
'pyyaml',
'Flask',
'Flask-WeasyPrint',
'qrcode',
'click',
],
entry_points={
'console_scripts': [
'12step=pdf12step.cli:cli',
]
}
)