Remove poetry #93019

Merged
Anna Sirota merged 27 commits from remove-poetry into main 2024-07-01 17:03:21 +02:00
Showing only changes of commit a98a6d5eb4 - Show all commits

View File

@ -17,6 +17,12 @@ requires-python = "== 3.10.*"
[tool.setuptools]
packages = ["looper"]
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["looper"] # package names should match these glob patterns (["*"] by default)
exclude = [] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[tool.black]
line-length = 100
skip_string_normalization = true