-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
94 lines (74 loc) · 2 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
requires = ["poetry-core>=1.0.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"
[tool.black]
target-version = ['py37', 'py38', 'py39', 'py310']
skip-string-normalization = true
include = '\.pyi?$'
[tool.poetry]
name = "django-eav2"
description = "Entity-Attribute-Value storage for Django"
version = "1.3.1"
license = "GNU Lesser General Public License (LGPL), Version 3"
packages = [
{ include = "eav" }
]
authors = [
"Mauro Lizaur <[email protected]>",
]
readme = "README.md"
repository = "https://github.com/jazzband/django-eav2"
keywords = [
"django",
"django-eav2",
"database",
"eav",
"sql",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Programming Language :: Python",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
]
[tool.poetry.dependencies]
python = "^3.8"
django = ">=3.2,<4.3"
# Docs extra:
sphinx = { version = ">=5,<7", optional = true }
sphinx-autodoc-typehints = { version = "^1.12", optional = true }
m2r2 = { version = "^0.3", optional = true }
tomlkit = { version = "^0.11", optional = true }
sphinx-rtd-theme = { version = "^1.0.0", optional = true }
[tool.poetry.dev-dependencies]
mypy = "^1.2"
wemake-python-styleguide = "^0.17"
flake8-pytest-style = "^1.7"
nitpick = "^0.33"
black = "^22.12"
safety = "^2.3"
pytest = "^6.2"
pytest-cov = "^4.0"
pytest-randomly = "^3.12"
pytest-pythonpath = "^0.7.4"
pytest-django = "^4.5.2"
hypothesis = "^6.72.0"
doc8 = "^0.11.2"
[tool.poetry.extras]
docs = [
"sphinx",
"sphinx-autodoc-typehints",
"sphinx_rtd_theme",
"m2r2",
"tomlkit",
]