-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (28 loc) · 1023 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
34
from setuptools import setup
from figure_manager import __version__
long_description = """
`figure_manager` can snap matplotlib-figures to various positions on the screen.
For example, more one figure to upper-left corner of the screen or make a figure full-screen.
More information at https://github.com/NorthGuard/figure_manager
"""
setup(
# Main
name='figure_manager',
version=__version__,
license='MIT License',
packages=["figure_manager"],
# Requirements
install_requires=["matplotlib", "numpy"],
# Display on PyPI
author='Jeppe Nørregaard',
author_email="northguard_serve@tutanota.com",
description='Easily snap Matplotlib figures to suitable location on screen.',
long_description=long_description,
long_description_content_type="text/markdown",
keywords="matplotlib figure monitor screen",
url='https://github.com/NorthGuard/figure_manager',
classifiers=[
'Programming Language :: Python :: 3',
],
python_requires='>=3.0',
)