22 lines
310 B
TOML
22 lines
310 B
TOML
[project]
|
|
name = "nomen"
|
|
version = "0.0.1"
|
|
dependencies = [
|
|
"disnake",
|
|
"python-dotenv",
|
|
"aiosqlite",
|
|
"google-re2"
|
|
]
|
|
|
|
[project.scripts]
|
|
nomen = "nomen:run"
|
|
|
|
[tool.setuptools.packages]
|
|
find = {}
|
|
|
|
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.ruff]
|
|
line-length = 120
|