forked from stsievert/python-drawnow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (23 loc) · 879 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
from setuptools import setup
setup(
name = 'drawnow',
packages = ['drawnow'],
version = '0.60',
description = 'MATLAB-like drawnow',
author = 'Scott Sievert',
author_email = '[email protected]',
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"
],
)