-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.28 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (44 loc) · 1.28 KB
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
[project]
name = "diafan"
version = "0.1.2"
description = "CLI per consultar i descarregar conjunts de dades del Portal de Transparència de Catalunya"
readme = "README.md"
license = "MIT"
authors = [
{ name = "David Poblador i Garcia", email = "hola@alltuner.com" }
]
requires-python = ">=3.14"
keywords = ["transparencia", "catalunya", "dades-obertes", "open-data", "cli", "csv"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.14",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
]
dependencies = [
"httpx[http2]>=0.28.1",
"python-slugify>=8.0.4",
"rich>=14.0.0",
"tqdm>=4.67.3",
"typer>=0.24.1",
]
[project.urls]
Homepage = "https://github.com/davidpoblador/diafan"
Repository = "https://github.com/davidpoblador/diafan"
Issues = "https://github.com/davidpoblador/diafan/issues"
[project.scripts]
diafan = "diafan.cli:app"
[build-system]
requires = ["uv_build>=0.11.23,<0.12"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"ruff>=0.14.14",
]