-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (40 loc) · 983 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "mizdb-watchlist"
version = "1.1.1"
description = "A watchlist for Django model objects."
authors = [
"Philip Becker <yummytea1@gmail.com>" ,
]
readme = "README.md"
packages = [{include = "mizdb_watchlist", from = "src"}]
classifiers = [
"Framework :: Django",
"Programming Language :: Python :: 3",
]
license = "MIT"
repository = "https://github.com/Actionb/mizdb-watchlist"
[tool.poetry.dependencies]
python = "^3.9"
django = ">=4.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.2"
ruff = "~0"
build = "^1.0.3"
twine = "^5.0.0"
tox = "^4.13.0"
coverage = "^7.4.3"
pytest-django = "^4.8.0"
pytest-xdist = "^3.5.0"
pytest-cov = "^4.1.0"
factory-boy = "^3.3.0"
playwright = "^1.43.0"
pytest-playwright = "~0"
pre-commit = "^3.8.0"
[tool.coverage.run]
branch = true
source = ["mizdb_watchlist"]
[tool.coverage.paths]
source = ["src", ".tox/*/site-packages"]