-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
50 lines (39 loc) · 913 Bytes
/
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
[tool.poetry]
name = "pilot_log"
version = "0.1.0"
description = "Simple Django pilot log webapp"
authors = ["Yury V. Zaytsev <[email protected]>"]
license = "MIT"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11" # @mm-version-check-ignore
django = "*"
django-countries = "*"
django-bootstrap5 = "*"
django-colorfield = "*"
python-dateutil = "*"
skyfield = "*"
timezonefinder = "*"
requests = "*"
playwright = "*"
fontawesomefree = "^6" # @mm-version-check-ignore
[tool.poetry.dev-dependencies]
django-debug-toolbar = "*"
requests-mock = "*"
pytest-django = "*"
pytest-cov = "*"
ruff = "*"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "config.settings"
[tool.coverage.run]
branch = true
source = ["."]
omit = [
"**/tests/**",
"*/migrations/*",
"*/test_*.py",
"manage.py"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"