This commit is contained in:
Infinidoge 2024-09-16 10:46:23 -04:00
commit fd9381e746
Signed by: Infinidoge
SSH key fingerprint: SHA256:oAMyvotlNFraMmZmr+p6AxnNfW/GioTs1pOn3V4tQ7A
8 changed files with 407 additions and 0 deletions

18
pyproject.toml Normal file
View file

@ -0,0 +1,18 @@
[project]
name = "nomen"
version = "0.0.1"
dependencies = [
"disnake",
"python-dotenv",
"aiosqlite"
]
[project.scripts]
nomen = "nomen:run"
[tool.setuptools.packages]
find = {}
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"