-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (17 loc) · 766 Bytes
/
setup.py
File metadata and controls
18 lines (17 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# adopted from http://peterdowns.com/posts/first-time-with-pypi.html
#from distutils.core import setup, find_packages
from setuptools import setup, find_packages
setup(
name = 'cmap2d',
packages = find_packages(exclude=['__pycache__']), # this must be the same as the name above
version = '0.0.1.dev0',
description = 'A small library for generating and sampling 2D RGB colormaps.',
author = 'Owen Derby',
author_email = 'oderby@users.noreply.github.com',
license = 'MIT',
url = 'https://github.com/oderby/cmap2d',
download_url = 'https://github.com/oderby/cmap2d/tarball/0.0.1.dev0',
keywords = ['2D Colormaps', 'Colormaps', 'RGB Colormaps'],
classifiers = [],
install_requires = ['numpy', 'scipy', 'matplotlib'],
)