forked from stsievert/python-drawnow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (21 loc) · 922 Bytes
/
setup.py
File metadata and controls
21 lines (21 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(name = 'drawnow',
packages = ['drawnow'],
version = '0.71.2',
description = 'MATLAB-like drawnow',
author = 'Scott Sievert',
author_email = 'stsievert@wisc.edu',
url = 'https://github.com/scottsievert/python-drawnow',
download_url = 'https://github.com/scottsievert/python-drawnow/archive/master.zip',
keywords = ['figure', 'plotting', 'visualization', 'matlab'],
use_2to3 = True,
requires = ['matplotlib'],
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Visualization"
])