-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
72 lines (66 loc) · 2.24 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# GNU General Public License v3.0
#
# This file is part of the GAHM model (https://github.com/adcirc/gahm).
# Copyright (c) 2023 ADCIRC Development Group.
#
# This program 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, version 3.
#
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
#
# Author: Zach Cobell
# Contact: zcobell@thewaterinstitute.org
#
[project]
name = "pygahm"
version = "0.0.1"
description = "Python bindings for the Generalized Asymmetric Holland Model (GAHM)"
authors = [
{ name = "Zach Cobell", email = "zcobell@thewaterinstitute.org" }
]
readme = "README.md"
license = { text = "GPL-3.0"}
requires-python = ">=3.8"
keywords = [ "hurricane", "vortex", "tropical cyclone" ]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Development Status :: 1 - Planning",
"Operating System :: OS Independent",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Atmospheric Science",
]
[project.urls]
"Homepage" = "https://github.com/adcirc/gahm"
"Bug Reports" = "https://github.com/adcirc/gahm/issues"
"Source" = "https://github.com/adcirc/gahm"
[build-system]
requires = [
"wheel",
"setuptools>=42",
"setuptools_scm[toml]",
"cmake_build_extension",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
exclude = ["*swig*", "examples*"]
[tool.bumpver]
current_version = "0.0.1"
version_pattern = "{major}.{minor}.{patch}"
commit = true
tag = true
commit_message = "Bump version: {current_version} -> {new_version}"
[tool.bumpver.file_patterns]
"pyproject.toml" = [ 'version = "{new_version}"',
'current_version = "{new_version}"']
"setup.py" = [ '__version__ = "{new_version}' ]