-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 993 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 993 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="mplotkit",
version="0.4.0",
author="Martok",
author_email="martok@martoks-place.de",
description="Collection of helpers for plotting with matplotlib",
long_description=open("README.md","rt").read(),
long_description_content_type="text/markdown",
url="https://github.com/martok/py-plotkit",
project_urls={
"Bug Tracker": "https://github.com/martok/py-plotkit/issues",
},
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Matplotlib",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Visualization",
],
packages=find_packages(),
install_requires=[
"matplotlib"
],
python_requires=">=3.6",
)