-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.06 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
[tool.poetry]
name = "soduco_geonetwork"
version = "0.1.0a"
description = "A python wrapper to use Geonetwork API"
license = "LGPL-3.0-or-later"
authors = [
"Dumenieu Bertrand <bertrand.dumenieu@ehess.fr>",
"Hersent Melvin <melvin.hersent@ign.fr>",
"Perret Julien <julien.perret@ign.fr>"
]
readme = "README.md"
keywords = ["Geonetwork", "API"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS"
]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.28.1"
pydantic = "^1.10.2"
PyYAML = "^6.0"
python-dotenv = "^0.21.0"
click = "^8.1.3"
pandas = "^2.1.0"
lxml = "^4.9.3"
openpyxl = "^3.1.2"
[tool.poetry.group.dev.dependencies]
cli-test-helpers = "^3.1.0"
pytest = "^7.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
soduco_geonetwork_cli = "soduco_geonetwork.cli.cli:cli"