-
Hi, I'm using Poetry for dependency management only and I have a project that contains two TOML files.Config.toml file that contains two tables the values of the custom table are always changed
Is there a problem if I transfer the default and custom sections from config.toml to the pyproject.toml file generated by Poetry?
|
Beta Was this translation helpful? Give feedback.
Answered by
Secrus
Apr 5, 2024
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
geehdev
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
pyproject.toml
spec is defined in PEP 518 and PyPA spec. By this spec, you should put your tables under[tool.your_tool_name]
. Poetry has nothing to do with it.