-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
pyproject.toml
74 lines (58 loc) · 1.57 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tool.poetry]
name = "django-test-migrations"
version = "1.4.0"
description = "Test django schema and data migrations, including ordering"
license = "MIT"
authors = [
"sobolevn <[email protected]>"
]
readme = "README.md"
repository = "https://github.com/wemake-services/django-test-migrations"
keywords = [
"django",
"django-tests",
"django-migrations",
"django-orm",
"migrations",
"orm",
"sql",
"tests",
"test",
"pytest",
"pytest-plugin"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
]
[tool.poetry.plugins.pytest11]
django_test_migrations = "django_test_migrations.contrib.pytest_plugin"
[tool.poetry.dependencies]
python = "^3.9"
typing_extensions = ">=4.0"
[tool.poetry.group.dev.dependencies]
django = "^4.2"
mypy = "^1.11"
django-stubs = "^5.0"
wemake-python-styleguide = "^0.19"
flake8-pytest-style = "^2.0"
nitpick = "^0.35"
pytest = "^8.2"
pytest-cov = ">=5,<7"
pytest-randomly = "^3.15"
pytest-django = "^4.8"
pytest-mock = "^3.14"
[build-system]
requires = ["poetry-core>=1.9.0"]
build-backend = "poetry.core.masonry.api"
[tool.nitpick]
style = "https://raw.githubusercontent.com/wemake-services/wemake-python-styleguide/master/styles/nitpick-style-wemake.toml"