-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
63 lines (58 loc) · 1.4 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[tool.poetry]
name = "PBG Modern Data Engineering"
version = "0.1.0"
description = "Python Biella Group Modern Data Engineering Project"
authors = ["PBG", "Andrea Guzzo", "Davide Airaghi"]
[tool.poetry.dependencies]
python = ">=3.8, <3.11"
numpy = "^1.21.2"
pytest = "^6.2.5"
SQLAlchemy = "^1.3.0"
sqlalchemy-json = "^0.4.0"
requests = "^2.26.0"
pyaml = "^21.8.3"
pandas = "^1.3.3"
Unidecode = "^1.3.2"
streamlit = "^1.2.0"
pydantic = "^1.8.2"
streamlit-folium = "^0.4.0"
selenium = "^4.1.0"
azure-storage-blob = "^12.9.0"
sodapy = "^2.1.0"
pyodbc = "^4.0.32"
apache-airflow = "2.2.4"
openpyxl = "^3.0.9"
plotly-express = "^0.4.1"
matplotlib = "^3.5.1"
XlsxWriter = "^3.0.3"
[tool.poetry.dev-dependencies]
flake8 = "^3.9.2"
flake8-isort = "ˆ4.0.0"
flake8-builtins = "ˆ1.5.3"
autopep8 = "ˆ1.5.7"
pylint = "ˆ2.8.2"
bandit = "ˆ1.7.0"
black = "ˆ21.5b0"
mypy = "ˆ0.812"
flake8-bandit = "ˆ2.1.2"
flake8-mypy = "ˆ17.8.0"
sqlalchemy-stubs = "^0.3"
pytest-cov = "^2.8.1"
autoflake = "^1.3.1"
jupyter = "^1.0.0"
jupyterlab = "^3.2.5"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
line_length = 120
[build-system]
requires = ["poetry-core=1.1.8"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"functions: mark test for the base functionalities",
"core: all about the core",
"db: all about the database",
"api: all about the api of the system",
]