-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.33 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pypromice_discharge"
version = "0.0.1"
dependencies = [
"pypromice>1.4.0",
]
requires-python = ">= 3.10"
description = "Process river discharge data"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Rasmus Bahbah Nielsen", email = "rabni@geus.dk"},
{name = "Penelope How", email = "pho@geus.dk"},
{name = "Mads Christian Lund", email = "maclu@geus.dk"},
]
maintainers = [
{name = "Rasmus Bahbah Nielsen", email = "rabni@geus.dk"}
]
keywords = ["promice", "aws", "discharge", "greenland"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.optional-dependencies]
bufr = ["eccodes"]
[project.scripts]
get_watsontx = "get_watsontx:main"
[project.urls]
Homepage = "https://promice.dk"
Documentation = "https://github.com/GEUS-Glaciology-and-Climate/pypromice-discharge/blob/main/README.md"
Repository = "https://github.com/GEUS-Glaciology-and-Climate/pypromice-discharge"
Issues = "https://github.com/GEUS-Glaciology-and-Climate/pypromice-discharge/issues"