Package dicekey for PyPI

This commit is contained in:
Kris Lamoureux 2023-07-18 04:40:30 -04:00
parent dcb9e8ce77
commit ff8a3c1b56
Signed by: kris
GPG Key ID: 3EDA9C3441EDA925
2 changed files with 22 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
dist/
*.egg-info/
.env
env

21
pyproject.toml Normal file
View File

@ -0,0 +1,21 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dicekey"
version = "0.0.1"
authors = [
{ name="Kris Lamoureux", email="kris@lamoureux.io" },
]
description = "A simple Python passphrase generator"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://git.krislamo.org/kris/dicekey"