-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (54 loc) · 1.11 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
64
[tool.poetry]
name = "boilerplate-python"
version = "0.1.0"
description = ""
authors = ["truonghm <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "boilerplate_python"}]
[tool.poetry.dependencies]
python = "~3.10"
fastapi = "^0.95.0"
pandas = "^1.5.3"
pydantic = "^1.10.7"
uvicorn = "^0.21.1"
SQLAlchemy = "^2.0.7"
python-dotenv = "^1.0.0"
pymysql = "^1.0.3"
cryptography = "^40.0.1"
conda-lock = "^1.4.0"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
pytest = "^7.2.2"
pytest-cov = "^4.0.0"
ruff = "^0.0.259"
watchdog = "^3.0.0"
httpx = "^0.23.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
ignore = ["E402","F841","E501","F401"]
select = ["E", "F", "I", "W"]
line-length = 100
fixable = ["I"]
exclude = [".env", ".venv", "venv", "notebooks"]
show-source = true
[tool.coverage.paths]
source = ["api", "etl", "ui"]
[tool.coverage.run]
branch = true
relative_files = true
[tool.coverage.report]
show_missing = true
fail_under = 80
[tool.black]
line-length = 100
extend-exclude = '''
/(
| .env
| .venv
| venv
| notebooks
)/
'''