-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (49 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
60 lines (49 loc) · 1.02 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
59
60
[tool.poetry]
name = "providers"
version = "1.0.0"
description = "Providers API"
authors = ["Evan Porter"]
license = "MIT"
readme = "README.md"
packages = [
{include = "providers", from = "src"}
]
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.136.0"
sqlmodel = "^0.0.38"
uvicorn = "^0.44.0"
[tool.poetry.group.dev.dependencies]
faker = "^40.15.0"
httpx = "^0.28.1"
python-slugify = "^8.0.4"
[tool.poetry.group.format.dependencies]
black = "^26.3.1"
[tool.poetry.group.import-sort.dependencies]
isort = "^8.0.1"
[tool.poetry.group.lint.dependencies]
flake8 = "^7.3.0"
[tool.poetry.group.test.dependencies]
pytest = "^9.0.3"
[tool.pytest.ini_options]
python_files = ["tests.py", "test_*.py", "*_tests.py"]
[tool.coverage.run]
include = ["src/*"]
omit = ["*tests*"]
[tool.black]
target-version = ["py311"]
exclude = """
/(
.git
| docs
| htmlcov
| .pytest_cache
| .tox
)/
"""
[tool.isort]
profile = "black"
skip_glob = ["docs/*"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"