-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
54 lines (48 loc) · 1.8 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
51
52
53
54
# Author(s): Petr Kavka and SMODERP2D Development Team
# Copyright (C) SMODERP2D Development Team
#
# 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'
dynamic = ["version"]
[tool.setuptools.packages.find]
where = [""]
exclude = ["bin*", "utils*", "tests*"]
[tool.setuptools.package-data]
"*" = [".config.ini", "txtlogo.txt"]
[tool.setuptools.dynamic]
version = {attr = "smoderp2d.__version__"}
[project]
name = 'smoderp2d'
dynamic = ["version"]
description = 'Distributed event-based model for surface and subsurface runoff and erosion.'
readme = 'README.md'
authors = [
{name = "Petr Kavka", email = "petr.kavka@fsv.cvut.cz"},
{name = "Jakub Jeřábek", email = "jakub.jerabek@fsv.cvut.cz"},
{name = "Martin Landa", email = "martin.landa@fsv.cvut.cz"},
{name = "Ondřej Pešek", email = "ondrej.pesek@fsv.cvut.cz"},
{name = "Jan Devátý", email = "jan.devaty@fsv.cvut.cz"},
]
requires-python = ">=3.8"
license = {text = "GPLv3"}
dependencies = ['numpy']
[project.urls]
documentation = 'https://storm-fsv-cvut.github.io/smoderp2d-manual'
repository = 'https://github.com/storm-fsv-cvut/smoderp2d'