forked from lvanhaaren/DataladExtensionCDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
104 lines (91 loc) · 2.26 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[project]
name = "datalad-cds"
description = "DataLad extension for downloading from the Copernicus Climate Data Store"
requires-python = ">=3.8"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "The DataLad Team and Contributors", email = "[email protected]" },
{ name = "Benedikt Bulich", email = "[email protected]" },
{ name = "Daniel Klauß", email = "[email protected]" },
{ name = "Laurens Jan van Haaren", email = "[email protected]" },
{ name = "Matthias Riße", email = "[email protected]" },
]
maintainers = [
{ name = "Matthias Riße", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dynamic = ["version"]
dependencies = [
"datalad>=0.17.0",
"annexremote>=1.6.0",
"cdsapi>=0.5.1",
]
[project.optional-dependencies]
devel = [
"coverage",
"hypothesis",
"mypy",
"pytest",
"pytest-cov",
"ruff",
"sphinx",
"sphinx_rtd_theme",
]
[project.urls]
repository = "https://github.com/matrss/datalad-cds"
[project.scripts]
git-annex-remote-cds = "datalad_cds.cds_remote:main"
[project.entry-points."datalad.extensions"]
download-cds = "datalad_cds:command_suite"
[build-system]
requires = ["setuptools >= 43.0.0", "tomli; python_version < '3.11'"]
build-backend = "setuptools.build_meta"
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "src/datalad_cds/_version.py"
versionfile_build = "datalad_cds/_version.py"
tag_prefix = "v"
[tool.coverage.report]
show_missing = true
omit = ["src/datalad_cds/_version.py"]
[tool.ruff]
line-length = 88
extend-exclude = [
"_datalad_buildsupport/",
"src/datalad_cds/_version.py",
"versioneer.py",
]
[tool.ruff.lint]
extend-select = ["I"]
[tool.mypy]
ignore_missing_imports = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
exclude = [
".tox/",
"_datalad_buildsupport/",
"build/",
"src/datalad_cds/_version.py",
"venv/",
"versioneer.py",
]
[[tool.mypy.overrides]]
module = [
"setup",
"datalad_cds",
]
disallow_untyped_calls = false
[[tool.mypy.overrides]]
module = [
"datalad_cds._version",
"versioneer",
"_datalad_buildsupport.*",
]
follow_imports = "skip"