-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (37 loc) · 976 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
[tool.poetry]
authors = ["Wu Haotian <whtsky@gmail.com>"]
description = "require `name` in Django's `makemigrations`"
license = "MIT"
name = "django-require-migration-name"
readme = "README.md"
version = "0.2.0"
keywords = [
"django",
"django-migrations",
"migrations",
]
repository = "https://github.com/whtsky/django-require-migration-name"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
]
[tool.poetry.dependencies]
Django = "^2.2 || ^3.0"
python = "^3.6"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
coverage = "^5.3.1"
isort = "^5.8.0"
tox = "^3.25.1"
tox-gh-actions = "^2.9.1"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.isort]
multi_line_output = 3
profile = "black"