mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-03-16 22:40:26 +00:00
* chore: bump min python version to 3.7 * test: update test matrix versions * doc: update changelog * test: use strings for versions * test: use major.minor for django version
83 lines
1.7 KiB
TOML
83 lines
1.7 KiB
TOML
[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 = ['py36', 'py37', 'py38', 'py39']
|
|
skip-string-normalization = true
|
|
include = '\.pyi?$'
|
|
|
|
|
|
[tool.poetry]
|
|
name = "django-eav2"
|
|
description = "Entity-Attribute-Value storage for Django"
|
|
version = "1.1.0"
|
|
license = "GNU Lesser General Public License (LGPL), Version 3"
|
|
packages = [
|
|
{ include = "eav" }
|
|
]
|
|
|
|
|
|
authors = [
|
|
"Mauro Lizaur <mauro@sdf.org>",
|
|
]
|
|
|
|
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 :: 2.2",
|
|
"Framework :: Django :: 3.1",
|
|
"Framework :: Django :: 3.2",
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
django-jsonfield-backport = "^1.0.4"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
django = "^3.2"
|
|
|
|
mypy = "^0.920"
|
|
|
|
wemake-python-styleguide = "^0.16"
|
|
flake8-pytest-style = "^1.5"
|
|
nitpick = "^0.29"
|
|
|
|
safety = "^1.10"
|
|
|
|
pytest = "^6.2"
|
|
pytest-cov = "^3.0"
|
|
pytest-randomly = "^3.10"
|
|
|
|
sphinx = "^4.3"
|
|
sphinx-autodoc-typehints = "^1.12"
|
|
doc8 = "^0.10"
|
|
m2r2 = "^0.3"
|
|
tomlkit = "^0.7"
|
|
pytest-pythonpath = "^0.7.3"
|
|
pytest-django = "^4.5.2"
|
|
black = "^21.12b0"
|