-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
34 lines (30 loc) · 1.11 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
[tool.poetry]
name = "tsg-client"
version = "0.1.0"
description = "TSG Client is a Python library for interacting with the TNO Security Gateway (TSG). It provides a simple and easy-to-use interface for tasks such as: Connecting to TSG connectors, Retrieving connector self-descriptions, Working with catalogs and artifacts, Requesting and consuming data artifacts, Knowing what connectors are in the dataspace, Take advantage of the OpenAPI functionalities"
authors = [
"Carolina Catorze <carolina.catorze@inesctec.pt>",
"Vasco Guedes <vasco.r.maia@inesctec.pt>",
"José Ricardo Andrade <jose.r.andrade@inesctec.pt>",
"José Luís Rodrigues <jose.l.rodrigues@inesctec.pt>",
]
readme = "README.md"
license = "LICENSE"
[tool.poetry.dependencies]
python = "^3.9"
loguru = "^0.7.2"
python-dotenv = "^1.0.0"
requests = ">=2.32.0"
myst_parser = "^2.0.0"
sphinx = "^7.2.6"
sphinx-rtd-theme = "^2.0.0"
ruff = "^0.3.2"
bcrypt = "^4.1.2"
pytest = "^8.1.1"
jinja2 = "3.1.4"
urllib3 = "2.2.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"