nerdletter/pyproject.toml
Greg Gauthier c7ecd98e1b chore(config): update pyproject.toml with project description and requirements
- Add [tool.poetry] section with package-mode=false.
- Update project description.
- Change requires-python from "^3.14" to ">=3.11".
- Minor formatting in authors.
2026-04-28 20:00:49 +01:00

19 lines
406 B
TOML

[tool.poetry]
package-mode = false
[project]
name = "nerdletter"
version = "0.1.0"
description = "A simple tool for encrypting/decrypting messages using a one-time pad."
authors = [
{name = "Gregory Gauthier", email = "gregory.gauthier@perspectum.com"}
]
requires-python = ">=3.11"
dependencies = [
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"