-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (46 loc) · 1.1 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
[tool.poetry]
name = "django-enumeration"
version = "1.0.0"
description = "Robust django enumeration sequences"
authors = ["Mārtiņš Šulcs <shulcsm@gmail.com>"]
license = "MIT"
readme = "README.rst"
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
]
packages = [
{ include = "enumeration" },
]
[tool.poetry.dependencies]
python = ">=3.6.2"
Django = ">=3.2"
[tool.poetry.dev-dependencies]
psycopg2-binary = "2.7.5"
tox = "^3.24"
flake8 = "3.5.0"
mypy = "0.761"
pytest-django = "^4.5.2"
isort = "^5.10.1"
black = "^21.12b0"
[build-system]
# https://github.com/python-poetry/poetry/issues/3001
requires = ["poetry-core>=1.0.0", "setuptools"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
files = "enumeration"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = [
'enumeration.migrations.*',
]
ignore_errors = true
[tool.isort]
py_version = 36
profile = "black"
force_single_line = true
combine_as_imports = true
lines_between_types = 1
lines_after_imports = 2
src_paths = ["enumeration", "tests"]