Repository URL to install this package:
|
Version:
1.0.7 ▾
|
pp-django
/
pyproject.toml
|
|---|
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 110
target-version = ["py38"]
[tool.isort]
line_length = 110
multi_line_output = 3
include_trailing_comma = true
known_first_party = [
"pp_python_commons",
"pp_django",
]
force_grid_wrap = 0
use_parentheses = true
known_local_folder = "tests,pp_django"
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
default_section = "THIRDPARTY"
[tool.poetry]
name = "pp_django"
version = "1.0.7"
description = "Library with common code for Django"
authors = ["Developers <developers@onyo.com>"]
repository = "pp-django"
keywords = [ "yaeeh", "tapioca" ]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
]
exclude = [ "docs", "tests*"]
include = ["*.rst", "*.txt", "*.py", "*.png", "*.dot", "Makefile"]
[[tool.poetry.source]]
name = "fury"
url = "https://pypi.fury.io/wilsonmoraes/"
[tool.poetry.dependencies]
python = "^3.9"
python-json-logger = "*"
openapi-codec = "*"
django = "*"
django-filter = "*"
django-localflavor = "*"
django-log-request-id = "*"
djangorestframework = "*"
psycopg2 = "*"
[tool.poetry.dev-dependencies]
coverage = "*"
pre-commit = "*"
pytest = "*"
pytest-cov = "*"
pytest-randomly = "*"
pytest-deadfixtures = "*"
pytest-django = "*"
ipython = "*"
safety = "*"
twine="*"