-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
34 lines (32 loc) · 1.05 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
#!/usr/bin/env python
from setuptools import setup
project = "drawilleplot"
version = "0.1.0"
setup(
name=project,
version=version,
description="matplotlib backend for graph output in unicode terminals using drawille",
author="Guenter Bartsch",
author_email="[email protected]",
url="https://github.com/gooofy/drawilleplot",
packages=["drawilleplot"],
download_url="https://github.com/gooofy/drawilleplot.git",
license="Apache",
platforms=["any"],
long_description="""
matplotlib backend for graph output in unicode terminals using drawille
""",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
],
install_requires=[
"drawille>=0.1.0",
"matplotlib>=3.1.2",
],
)