Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
tapioca-braspag / pyproject.toml
Size: Mime:
[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,tapioca_braspag"
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
default_section = "THIRDPARTY"

[tool.poetry]
name = "tapioca_braspag"
version = "1.1.0"
description = "Wrapper for Braspag API services."
authors = ["Developers <developers@onyo.com>"]
repository = "tapioca-braspag"
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"
tapioca-wrapper = "^2.0.1"
responses = "0.13.4"

[tool.poetry.dev-dependencies]
coverage = "*"
pre-commit = "*"
pytest = "*"
pytest-cov = "*"
pytest-randomly = "*"
pytest-deadfixtures = "*"
ipython = "*"
safety = "*"
twine="*"
python-decouple="*"
mock="*"