-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (36 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
32
33
34
35
36
37
38
39
40
41
42
43
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "django-safemigrate"
version = "4.3"
description = "Safely run migrations before deployment"
authors = [{ name = "Ryan Hiebert", email = "[email protected]" }]
license = { text = "MIT" }
readme = "README.rst"
requires-python = ">=3.8"
dependencies = ["django>=4.2"]
[project.scripts]
safemigrate-check = "django_safemigrate.check:main"
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
"pytest-django",
"pytest-mock",
"dj-database-url",
"coverage[toml]",
]
[tool.isort]
combine_as_imports = true
profile = "black"
[tool.coverage.run]
branch = true
source = ["django_safemigrate"]
[tool.coverage.paths]
source = [
"src/django_safemigrate",
".tox/*/lib/python*/site-packages/django_safemigrate",
]
[tool.coverage.report]
show_missing = true