Initial commit

This commit is contained in:
2023-08-18 12:13:32 +00:00
commit 82d4d0be48
7 changed files with 178 additions and 0 deletions

16
pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
[tool.poetry]
name = "problemset-numberwords"
version = "0.1.0"
description = ""
authors = ["Chris Proctor <chris@chrisproctor.net>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
numwords = "cli:cli"