-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.5 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
[tool.poetry]
name = "pyeph"
version = "1.6.4"
description = "PyEPH es una librería para el procesamiento de la Encuesta Permanente de Hogares (eph) en Python. Permite la descarga de archivos de EPH's y otros como la canasta basica y adulto equivalente , como asi también algunos calculos rápidos relacionados con las mismas"
authors = ["Maria Carolina Trogliero, Mariano Valdez Anopa, Maria Gaska"]
license = "MIT"
homepage = "https://github.com/institutohumai/pyeph/"
readme = "README.md"
documentation = "https://pyeph.readthedocs.io/es/latest/"
include = [
{ path = "pyeph/data/adulto_equivalente.csv", format = ["sdist", "wheel"] },
]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
pandas = "^2.0.0"
requests = "^2.31.0"
tqdm = "^4.66.0"
xlrd = "^2.0.1"
openpyxl = "^3.0.10"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.2"
pytest-cov = "^7.0.0"
ipykernel = "^6.13.0"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
addopts = "--strict-markers --disable-warnings"
[tool.coverage.run]
source = ["pyeph"]
relative_files = true
omit = [
"*/tests/*",
"*/__pycache__/*",
"*/env/*",
"*/venv/*",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
"@abstractmethod",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"