-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (17 loc) · 729 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (17 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""Setup module for colorview2d package."""
#!/usr/bin/env python
from setuptools import setup
VERSION = '0.6.5'
setup(name='colorview2d',
version=VERSION,
description='2d color plotting tool',
author='Alois Dirnaichner',
author_email='alo.dir@gmail.com',
url='https://github.com/Loisel/colorview2d',
download_url='https://github.com/Loisel/colorview2d/tarball/v' + VERSION,
packages=['colorview2d', 'test', 'colorview2d.mods'],
package_data={'':['default.cv2d'], },
include_package_data=True,
install_requires=['pyyaml', 'scikit-image', 'matplotlib', 'numpy'],
keywords=['plotting', 'colorplot', 'scientific', 'numpy', 'matplotlib'],
classifiers=[],)