-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
42 lines (37 loc) · 1020 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "data-consumer-api"
version = "4.5.0"
description = "Data Ingestion and Data Analysis from public endpoint using pandas"
authors = ["IvanildoBarauna <[email protected]>"]
readme = "README.md"
license = "MIT"
packages = [{ include = "etl" }]
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^2.2.3"
tqdm = "^4.67.0"
pyarrow = "^18.1.0"
fastparquet = "^2024.11.0"
api-to-dataframe = "^1.3.11"
numpy = "^2.1.3"
poetry-dynamic-versioning = "^1.4.1"
[tool.poetry.group.dev.dependencies]
pandasql = "^0.7.3"
ipykernel = "^6.29.5"
nbconvert = "^7.16.4"
coverage = "^7.6.8"
pytest = "^8.3.3"
poetry-dynamic-versioning = "^1.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry-dynamic-versioning]
enable = true
versioning = "semantic"
[tool.pylint.'MESSAGES CONTROL']
disable = [
"C0114", # missing-module-docstring
"C0115", # missing-class-docstring
"C0116", # missing-function-docstring
"R0903", # too-few-public-methods
]