-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (55 loc) · 1.55 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (55 loc) · 1.55 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
[project]
name = "datasus-fetcher"
version = "0.6.0"
description = "Downloader of DATASUS raw data files"
readme = "README.md"
authors = [
{ name = "Komesu, D.K.", email = "daniel@dkko.me" },
]
license = { file = "LICENSE" }
requires-python = ">=3.12"
keywords = [
"data",
"open data",
"data fetcher",
"health",
"datasus",
"microdata",
"brazil",
"saúde",
]
classifiers = [
"Development Status :: 4 - Beta",
"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 :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Internet :: File Transfer Protocol (FTP)",
]
dependencies = [
"quantilica-core @ git+https://github.com/Quantilica/quantilica-core.git",
]
[project.urls]
Homepage = "https://github.com/Quantilica/datasus-fetcher"
Repository = "https://github.com/Quantilica/datasus-fetcher"
Issues = "https://github.com/Quantilica/datasus-fetcher/issues"
[project.scripts]
datasus-fetcher = "datasus_fetcher.cli:main"
[project.entry-points."quantilica.fetchers"]
datasus = "datasus_fetcher.plugin:app"
[dependency-groups]
dev = [
"ruff>=0.9.0",
"pytest>=8.0.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/datasus_fetcher"]
[tool.hatch.metadata]
allow-direct-references = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"