-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (37 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
47 lines (37 loc) · 1.04 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
[tool.poetry]
name = "poetry-template"
version = "0.1.5"
description = "A minimal, strictly structured Python project template."
license = "MIT"
authors = ["Mislav Jaksic <jaksicmislav@gmail.com>"]
maintainers = []
readme = "README.md"
homepage = "https://github.com/MislavJaksic/Python-Project-Template"
repository = "https://github.com/MislavJaksic/Python-Project-Template"
documentation = "https://github.com/MislavJaksic/Python-Project-Template"
keywords = []
classifiers = []
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.28.2"
loguru = "^0.7.0"
[tool.poetry.dev-dependencies]
pytest-cov = "^4.0.0"
pytest = "^7.3.0"
pytest-asyncio = "^0.21.0"
pytest-integration = "0.2.3"
Sphinx = "^5.0.0"
black = "^23.3.0"
mypy = "^1.2.0"
[tool.poetry.scripts]
poetry-template = "poetry_template.runner:run"
[tool.mypy]
python_version = "3.8"
ignore_missing_imports = true
# plugins = pydantic.mypy
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = "tests"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"