Skip to content

Instantly share code, notes, and snippets.

View heliocastro's full-sized avatar

Helio Chissini de Castro heliocastro

View GitHub Profile
@heliocastro
heliocastro / pyproject.toml
Last active September 29, 2023 07:47
Poetry optional build dependency issue
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "mylib-core"
version = "1.2.1"
description = "Mylib for test purposes"
authors = [ "Helio Chissini de Castro <heliocastro@gmail.com>"]
readme = "README.md"
@heliocastro
heliocastro / append_pyproject.toml
Created January 10, 2023 10:09
My python project bootstrap
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 120
[tool.black]
line-length = 120
include = '\.pyi?$'