-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (27 loc) · 952 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
from os.path import abspath, dirname, join
from setuptools import find_packages, setup
HERE = dirname(abspath(__file__))
README = open(join(HERE, 'README.md')).read()
CHANGES = open(join(HERE, 'CHANGES.md')).read()
REQUIRES = ['Flask>=1.0.2', 'WeasyPrint>=47']
setup(
name="convert2pdf",
version="0.0.1",
description="A converter to pdf wsgi.",
long_description=README + '\n\n' + CHANGES,
license="MIT License",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='Makina Corpus',
author_email='[email protected]',
url='https://github.com/courtem/wsgi-convert2pdf',
keywords='web flask webservice convert wsgi',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=REQUIRES,
)