django-eav2/pyproject.toml

95 lines
2 KiB
TOML
Raw Normal View History

2021-06-17 23:36:29 +00:00
[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]
2022-02-09 02:33:09 +00:00
target-version = ['py37', 'py38', 'py39', 'py310']
2021-06-17 23:36:29 +00:00
skip-string-normalization = true
include = '\.pyi?$'
[tool.poetry]
2021-10-15 19:41:06 +00:00
name = "django-eav2"
description = "Entity-Attribute-Value storage for Django"
2023-02-22 17:37:41 +00:00
version = "1.3.1"
2021-06-17 23:36:29 +00:00
license = "GNU Lesser General Public License (LGPL), Version 3"
packages = [
{ include = "eav" }
]
2021-06-17 23:36:29 +00:00
authors = [
"Mauro Lizaur <mauro@sdf.org>",
]
readme = "README.md"
2021-06-18 00:11:37 +00:00
repository = "https://github.com/jazzband/django-eav2"
2021-06-17 23:36:29 +00:00
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",
2022-02-09 02:33:09 +00:00
"Framework :: Django :: 4.0",
2023-02-10 16:59:54 +00:00
"Framework :: Django :: 4.1",
2021-06-17 23:36:29 +00:00
]
[tool.poetry.dependencies]
2023-02-10 16:56:08 +00:00
python = "^3.8"
django = ">=3.2,<4.3"
2021-06-17 23:36:29 +00:00
# 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 }
2022-08-15 18:53:39 +00:00
sphinx-rtd-theme = { version = "^1.0.0", optional = true }
2022-08-13 17:08:16 +00:00
[tool.poetry.dev-dependencies]
mypy = "^1.4"
2021-06-17 23:36:29 +00:00
wemake-python-styleguide = "^0.17"
flake8-pytest-style = "^1.7"
nitpick = "^0.33"
black = "^22.12"
2021-06-17 23:36:29 +00:00
safety = "^2.3"
2021-06-17 23:36:29 +00:00
pytest = "^6.2"
pytest-cov = "^4.1"
pytest-randomly = "^3.12"
pytest-pythonpath = "^0.7.4"
pytest-django = "^4.5.2"
hypothesis = "^6.80.1"
doc8 = "^0.11.2"
[tool.poetry.extras]
docs = [
"sphinx",
"sphinx-autodoc-typehints",
2022-08-13 17:08:16 +00:00
"sphinx_rtd_theme",
"m2r2",
"tomlkit",
]