-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 868 Bytes
/
pyproject.toml
File metadata and controls
43 lines (36 loc) · 868 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
40
41
42
43
[tool.poetry]
name = "databasers-utils"
version = "0.1.0"
description = ""
authors = [
"Laura Amaral <laura.amaral@basedosdados.org>",
"Pedro Castro <pedro.castro@basedosdados.org>",
"Arthur Gusmão <arthur.gusmao@basedosdados.org>"
]
readme = "README.md"
packages = [
{ include = "databasers_utils", from = "src" }
]
[tool.poetry.scripts]
lint = "scripts.lint:main"
[tool.poetry.dependencies]
python = ">=3.9,<4"
basedosdados = {extras = ["all"], version = "^2.0.2"}
pandas = "^2.2.2"
numpy = "^1.26.4"
requests = ">=2.26.0"
ruamel-yaml = ">=0.17.10"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
ruff = "^0.9.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 80
exclude = ["misc"]
[tool.pytest.ini_options]
pythonpath = "src"
addopts = [
"--import-mode=importlib",
]