forked from py-pdf/fpdf2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (50 loc) · 1.8 KB
/
setup.py
File metadata and controls
55 lines (50 loc) · 1.8 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError as e:
from distutils.core import setup, find_packages
import unittest
def run_test_suite():
return unittest.TestLoader().discover('test', pattern = '*.py')
def read(path):
"""Read a file's contents."""
with open(path, 'r') as f:
return f.read()
import re
version = re.findall(r"FPDF_VERSION = '(\d+.\d+.\d+)'", read('./fpdf/fpdf.py'))[0]
if __name__ == '__main__': setup(
name = 'fpdf2',
version = version,
description = 'Simple PDF generation for Python',
long_description = read('./PyPIReadme.rst'),
author = 'Olivier PLATHEY ported by Max',
author_email = 'maxpat78@yahoo.it',
maintainer = "David Ankin",
maintainer_email = "daveankin@gmail.com",
url = 'https://alexanderankin.github.io/pyfpdf/',
license = 'LGPLv3+',
download_url = "https://github.com/alexanderankin/pyfpdf/tarball/%s" % version,
packages = find_packages(),
package_dir = {'fpdf': 'fpdf'},
test_suite = 'setup.run_test_suite',
install_requires=[
'Pillow>=4,<=8',
'six',
'future'
],
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: PHP Classes",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Multimedia :: Graphics",
],
keywords = ["pdf", "unicode", "png", "jpg", "ttf"],
)