-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 812 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 812 Bytes
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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# Update according to your use-case
[tool.poetry]
name = "project_template"
version = "2.0.0"
description = "Template for Python applications"
authors = ["Nikolas Achatz <nik@example.com>"]
packages = [{ include = "project_template", from = "src" }]
[tool.black]
target-version = ["py310"]
line-length = 120
[tool.mypy]
ignore_missing_imports = true
disallow_untyped_defs = true
follow_imports = "skip"
# Add dependencies for production codebase
[tool.poetry.dependencies]
python = "^3.10"
pydantic = "^2.3"
requests = "^2.31.0"
setuptools = "^58.0.0"
[tool.poetry.group.dev.dependencies]
black = "*"
coverage = "*"
mypy = "*"
pytest = "*"
pytest-cov = "*"
pytest-mock = "*"
prospector = "*"
types-requests = "*"