forked from storm-fsv-cvut/smoderp2d
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (45 loc) · 1.71 KB
/
pyproject.toml
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
# Author(s): Petr Kavka, Karel Vrana
# Copyright (C) TODO
#
# This file is part of smoderp2d.
#
# smoderp2d is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# smoderp2d is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with smoderp2d. If not, see <https://www.gnu.org/licenses/>.
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[metadata]
name = 'smoderp2d'
version = '2.0.0rc1'
[tool.setuptools.packages.find]
where = [""]
exclude = ["bin*", "utils*", "tests*"]
[tool.setuptools.package-data]
"*" = [".config.ini", "txtlogo.txt"]
[project]
name = 'smoderp2d'
version = '2.0.0rc1'
description = 'Distributed event-based model for surface and subsurface runoff and erosion.'
authors = [
{name = "Petr Kavka", email = "[email protected]"},
{name = "Jakub Jeřábek", email = "[email protected]"},
{name = "Martin Landa", email = "[email protected]"},
{name = "Ondřej Pešek", email = "[email protected]"},
{name = "Jan Devátý", email = "[email protected]"},
]
requires-python = ">=3.8"
license = {text = "GPLv3"}
dependencies = ['numpy']
[project.urls]
documentation = 'https://storm.fsv.cvut.cz/cinnost-katedry/volne-stazitelne-vysledky/smoderp/?lang=en'
repository = 'https://github.com/storm-fsv-cvut/smoderp2d'