poetry init

This commit is contained in:
Brad Ganley
2025-10-02 21:46:06 -05:00
parent f587733c1b
commit 707827f09b

18
pyproject.toml Normal file
View File

@@ -0,0 +1,18 @@
[project]
name = "cwbasetest"
version = "0.0.1"
description = "Tomfoolery abounds here"
authors = [
{name = "Brad Ganley",email = "bg10k@tuta.io"}
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"pyconnectwise (>=0.6.1.2,<0.7.0.0)",
"dotenv (>=0.9.9,<0.10.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"