-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 697 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Description: Setup file
#
# Installation of package: python -m pip install .
#
# Copyright (c) 2023 ETH Zurich, Christian R. Steger
# MIT License
# Load modules
from setuptools import setup
setup(
name="terrain3d",
version="0.1",
description="Three-dimensional visualisation of terrain data from digital"
"elevation models (DEMs) or climate model topography with"
"PyVista. A set of Python example scripts illustrates how this"
"data can be plotted for various domains and with auxiliary"
"information.",
author="Christian R. Steger",
author_email="christian.steger@env.ethz.ch",
packages=["terrain3d"]
)