forked from yisak/shyft_viz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (21 loc) · 780 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
24
25
26
27
from setuptools import setup, find_packages
# Requires conda-build version 2.0.9
# Build conda package with following commands in shyft_viz\:
# python setup.py install
# python setup.py bdist_conda
# VERSION should be set in a previous build step (ex: TeamCity)
VERSION = open('VERSION').read().strip()
open('shyft_viz/version.py', 'w').write('__version__ = "%s"\n' % VERSION)
setup(
name='shyft_viz',
version=VERSION,
author='Statkraft',
author_email='[email protected]',
url='https://github.com/yisak/shyft_viz',
description='Matplotlib-based tool for interactive visualization of data in a shyft region-model',
license='LGPL v3',
packages=find_packages(),
package_data={},
entry_points={},
requires=['matplotlib', 'numpy']
)