Skip to content

Instantly share code, notes, and snippets.

@fliiiix
Created March 19, 2021 08:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fliiiix/aac596c80d9c7f7a20571eb5c5b1e073 to your computer and use it in GitHub Desktop.
Save fliiiix/aac596c80d9c7f7a20571eb5c5b1e073 to your computer and use it in GitHub Desktop.
[tool.poetry]
name = "bob-the-builder"
version = "0.1.0"
description = "Blaa"
authors = ["Blaa"]
license = "Proprietary"
[tool.poetry.dependencies]
python = "^3.9"
pydantic = "*"
transportlayerskynet = "*"
ricofile = "*"
rico = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
sphinx = "*"
flakehell = "*"
pep8-naming = "*"
flake8-2020 = "*"
flake8-use-fstring = "*"
flake8-docstrings = "*"
flake8-isort = "*"
flake8-black = "*"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--ff -ra -v"
python_functions = [
"should_*",
"test_*",
]
testpaths = [
"tests",
"builder",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# rico file
[[tool.poetry.source]]
name = "gitlab"
url = "https://$gitlab/api/v4/projects/9954/packages/pypi/simple"
# rico
[[tool.poetry.source]]
name = "gitlab"
url = "https://$gitlab/api/v4/projects/9956/packages/pypi/simple"
# transport lib
[[tool.poetry.source]]
name = "gitlab"
url = "https://$gitlab/api/v4/projects/8984/packages/pypi/simple"
[tool.flakehell]
max_line_length = 100
show_source = true
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 100
[tool.black]
line-length = 100
[tool.flakehell.plugins]
pyflakes = ["+*"]
pycodestyle = ["+*"]
pep8-naming = ["+*"]
"flake8-*" = ["+*"]
[tool.flakehell.exceptions."tests/"]
flake8-docstrings = ["-*"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment