-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
89 lines (82 loc) · 1.76 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dtcg"
version = "0.0.2"
authors = [
{ name = "DTCG Contributors", email = "" },
]
description = "DTCG API"
readme = "README.md"
requires-python = ">=3.9"
license = "Apache-2.0"
license-files = ["LICENSE"]
keywords = [
"DTCG",
"OGGM",
"API"
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Development Status :: 1 - Planning",
"Private :: Do Not Upload",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Environment :: Console",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"numpy",
"matplotlib",
"geopandas"
]
[project.optional-dependencies]
tests = [
"pytest",
"coverage",
"coveralls",
]
docs = [
"sphinx",
"sphinx-rtd-theme >= 1.1",
]
dev = [
"dtcg[tests,docs]",
"hatchling >= 1.12",
"build >= 0.7",
"pylint >= 2.16.1",
"flake8 >= 6.0",
"black >= 23.1",
"isort",
]
[project.urls]
"Homepage" = "https://github.com/DTC-Glaciers/dtcg"
"Bug Tracker" = "https://github.com/DTC-Glaciers/dtcg/issues"
"Documentation" = "https://dtc-glaciers.github.io"
# [tool.pytest.ini_options]
# addopts = [
# "--import-mode=importlib",
# ]
# [project.scripts]
# run-dtcg = "main:main"
# dtcg-run = "main:main"
[tool.hatch.build.targets.sdist]
packages = ["dtcg"]
exclude = [
"logs",
"*.png",
"*.vtu",
"*.csv",
"*.nc",
"*.bat",
"*.sh",
"*.ipynb",
]
[tool.hatch.build.targets.wheel]
packages = ["dtcg"]