-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (29 loc) · 1.02 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
from setuptools import setup
from matplotlib_pdf import __version__
long_description = """
Store multiple `matplotlib` figures as pages in a PDF-file.
`PDFFigureContainer` is initialized with a Path to a destination.
`PDFFigureContainer.add_figure_page()` is called to add current figure to PDF.
More information at https://github.com/NorthGuard/matplotlib_pdf
"""
setup(
# Main
name='matplotlib_pdf',
version=__version__,
license='MIT License',
packages=["matplotlib_pdf"],
# Requirements
install_requires=["matplotlib", "PyPDF2", "reportlab"],
# Display on PyPI
author='Jeppe Nørregaard',
author_email="northguard_serve@tutanota.com",
description='Maintain a PDF-file with Matplotlib figures as pages.',
long_description=long_description,
long_description_content_type="text/markdown",
keywords="matplotlib pdf figure",
url='https://github.com/NorthGuard/matplotlib_pdf',
classifiers=[
'Programming Language :: Python :: 3',
],
python_requires='>=3.0',
)