-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 956 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 956 Bytes
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
[project]
name = "pdnd-python-client"
version = "0.1.20"
description = "Client Python per autenticazione e interazione con le API della Piattaforma Digitale Nazionale Dati (PDND)."
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
authors = [
{name = "Francesco Loreti", email = "francesco.loreti@isprambiente.it"}
]
dependencies = [
"PyJWT>=2.0.0",
"cryptography",
"requests"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent"
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-watch",
"requests-mock"
]
[project.urls]
Homepage = "https://github.com/isprambiente/pdnd-python-client"
Issues = "https://github.com/isprambiente/pdnd-python-client/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["pdnd_client*"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"