generated from datalad/datalad-extension-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (32 loc) · 1018 Bytes
/
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
[project]
name = "datalad-cds-extension"
description = "DataLad extension for downloading from cds api"
requires-python = ">=3.10"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "The DataLad Team and Contributors", email = "[email protected]" },
{ name = "Laurens Jan van Haaaren", email = "[email protected]" },
]
maintainers = [
{ name = "Laurens Jan van Haaaren", 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.entry-points."datalad.extensions"]
download-cds = "datalad_cds_extension:command_suite"
[build-system]
requires = ["setuptools >= 43.0.0", "wheel"]
[project.scripts]
git-annex-remote-cdsrequest = "datalad_cds_extension.cdsrequest:main"
[project.urls]
"Homepage"="https://github.com/lvanhaaren/DataladExtensionCDS"