-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (27 loc) · 858 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
[tool.poetry]
name = "django-rest-framework-dango"
version = "0.1.4"
description = "A set of viewset mixin for the Django REST Framework."
authors = ["Yangwook Jeong <[email protected]>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/yangeok/django-rest-framework-dango"
[tool.poetry.dependencies]
python = "^3.11"
djangorestframework = "^3.14.0"
typing-extensions = "^4.12.2"
django = "^4.1.5"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
taskipy = "^1.14.0"
pytest-watch = "^4.2.0"
pytest-testmon = "^2.1.1"
pytest-mock = "^3.14.0"
pytest-cov = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.taskipy.tasks]
test-watch = "ptw --runner 'pytest --testmon -s' -c -v"
test = "ptw"
test-cov = "pytest --cov-report term-missing --cov=django_rest_framework_dango tests/"