-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (66 loc) · 1.78 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (66 loc) · 1.78 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[project]
name = "sidra-sql"
version = "1.3.1"
description = "Tabelas de dados agregados do IBGE"
readme = "README.md"
authors = [
{ name = "Komesu, D.K.", email = "daniel@dkko.me" },
]
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.12"
keywords = ["ibge", "sidra", "postgresql", "etl", "brazil", "open-data"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"sidra-fetcher>=0.7.2",
"psycopg[binary]>=3.2.9",
"sqlalchemy>=2.0.41",
"orjson>=3.11.7",
"platformdirs>=4.9.6",
"typer>=0.24.1",
"rich>=13.0.0",
"httpx>=0.28.1",
]
[project.scripts]
sidra-sql = "sidra_sql.cli:main"
[project.urls]
Homepage = "https://github.com/Quantilica/sidra-sql"
Repository = "https://github.com/Quantilica/sidra-sql"
Issues = "https://github.com/Quantilica/sidra-sql/issues"
[dependency-groups]
dev = [
"pytest>=8.0",
"ruff>=0.9.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = ["-p", "no:cacheprovider"]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[tool.ruff.lint.per-file-ignores]
# typer.Option()/typer.Argument() as defaults is the idiomatic typer pattern
"src/sidra_sql/cli.py" = ["B008"]
[tool.hatch.build.targets.sdist]
include = [
"src/",
"tests/",
"README.md",
"CHANGELOG.md",
"LICENSE",
"CREATING_PIPELINES.md",
]
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"