-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (76 loc) · 2.1 KB
/
Copy pathpyproject.toml
File metadata and controls
88 lines (76 loc) · 2.1 KB
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
[build-system]
requires = [
"hatchling>=1.8.0",
"hatch-vcs"
]
build-backend = "hatchling.build"
[project]
name = "pycoupler"
dynamic = ["version"]
description = "dynamic model coupling of LPJmL"
readme = "README.md"
license = {file = "LICENSE.md"}
authors = [
{ name = "Jannes Breier", email = "jannes.breier@pik-potsdam.de" },
]
requires-python = ">=3.9"
keywords = ["DGVM", "ABM", "model coupling", "LPJmL", "copan:CORE"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"numpy>=1.20.3",
"netCDF4>=1.5.8",
"xarray>=0.21.1",
"pandas<3.0.0",
"scipy>=1.7.1",
"ruamel.yaml>=0.17.16",
"fuzzywuzzy>=0.18.0",
"Levenshtein>=0.12.2"
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pytest-subprocess",
"sphinx",
"black",
"flake8"
]
[project.urls]
Homepage = "https://github.com/PIK-LPJmL/pycoupler"
Issues = "https://github.com/PIK-LPJmL/pycoupler/issues"
Documentation = "https://github.com/PIK-LPJmL/pycoupler/wiki"
Repository = "https://github.com/PIK-LPJmL/pycoupler"
[tool.aliases]
test = "pytest"
docs = "sphinx-build -b html ./docs ./docs/_build"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--strict-markers"
[tool.black]
line-length = 88
target-version = ['py37', 'py38', 'py39', 'py310']
extend-exclude = "pycoupler/_version.py"
# [project.scripts]
# pycoupler-cli = "pycoupler.cli:main"
[tool.hatch.version]
source = "vcs"
fallback_version = "1.5.6"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.hooks.vcs]
version-file = "pycoupler/_version.py"
template = "__version__ = '{version}'"