aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/ipm/project/toml_file.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipm/project/toml_file.py b/src/ipm/project/toml_file.py
index 43725f7..e0738c8 100644
--- a/src/ipm/project/toml_file.py
+++ b/src/ipm/project/toml_file.py
@@ -126,7 +126,7 @@ def init_pyproject(
license_table = tomlkit.inline_table()
license_table.update({"text": license})
project.add("license", license_table)
- project.add("dependencies", tomlkit.array('[infini]'))
+ project.add("dependencies", tomlkit.array('["infini"]'))
project.add("requires-python", ">=3.8")
project.add("readme", "README.md")