diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..43c4421 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,18 @@ +[project] +name = "yoshi-cli" +version = "0.1.0" +authors = [ + { name="Christian Cleberg", email="hello@cleberg.net" }, +] +description = "A password manager for the command line." +readme = "README.md" +requires-python = ">=3.8" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", + "Operating System :: OS Independent", +] + +[project.urls] +Homepage = "https://github.com/ccleberg/yoshi" +Issues = "https://github.com/ccleberg/yoshi/issues" |