forked from TopoToolbox/pyfastflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
77 lines (75 loc) · 2.56 KB
/
Copy pathsetup.py
File metadata and controls
77 lines (75 loc) · 2.56 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
from setuptools import find_packages, setup
with open("README.md", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="pyfastflow",
version="0.0.1",
author="Boris Gailleton",
author_email="boris.gailleton@univ-rennes.fr",
description="GPU geomorphological and hydraulic flow routines",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bgailleton/fastflow_taichi",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: GIS",
],
python_requires=">=3.9",
install_requires=[
"taichi>=1.4.0",
"numpy>=1.20.0",
"matplotlib>=3.3.0",
"click>=7.0",
"pillow>=8.0.0",
],
extras_require={
"dev": [
"pytest>=6.0",
"pytest-cov",
"black",
"flake8",
],
"topotoolbox": [
"topotoolbox",
],
"visugl": [
"moderngl>=5.8.0",
"moderngl-window>=2.4.0",
"imgui[glfw]>=1.4.0",
"glfw>=2.5.0",
],
"3dterrain": [
"moderngl>=5.8.0",
"moderngl-window>=2.4.0",
"imgui[glfw]>=1.4.0",
"glfw>=2.5.0",
"rasterio>=1.3.0",
"scipy>=1.7.0",
],
},
keywords="geomorphology hydraulics flow routing GPU taichi",
project_urls={
"Bug Reports": "https://github.com/bgailleton/fastflow_taichi/issues",
"Source": "https://github.com/bgailleton/fastflow_taichi",
},
entry_points={
"console_scripts": [
"pff-raster2npy=pyfastflow.cli.raster_commands:raster2npy",
"pff-upscale=pyfastflow.cli.rastermanip_commands:raster_upscale",
"pff-downscale=pyfastflow.cli.rastermanip_commands:raster_downscale",
"pff-dem2png=pyfastflow.cli.dem2png_commands:dem2png",
"pff-boundary-gui=pyfastflow.cli.grid_commands:boundary_gui",
"pff-precip-gui=pyfastflow.cli.precip_commands:precipitation_gui",
"pff-terrain3d=pyfastflow.cli.terrain3d_cli:main",
],
},
)