diff options
author | Christian Cleberg <hello@cleberg.net> | 2024-11-06 21:52:32 -0600 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2024-11-06 21:52:32 -0600 |
commit | c7e5d9fbec9418d856be961358e35f603bbbf523 (patch) | |
tree | 1aa2bbdd0bf96d7037537c2d6f5a989c19be8ffd /pyproject.toml | |
parent | e5d61719e201a1c25e9907bd220bfcac4fc9a4f5 (diff) | |
download | yoshi-cli-c7e5d9fbec9418d856be961358e35f603bbbf523.tar.gz yoshi-cli-c7e5d9fbec9418d856be961358e35f603bbbf523.tar.bz2 yoshi-cli-c7e5d9fbec9418d856be961358e35f603bbbf523.zip |
configure as pypi hosted app
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" |