-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.18 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[project]
name = "idlezpgbot"
version = "0.1.1"
description = "The #IdleZPG Bot"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "txtsd", email = "[email protected]" }]
maintainers = [{ name = "txtsd", email = "[email protected]" }]
keywords = ["irc", "bot", "idlerpg", "idle", "rpg", "zpg"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Communications :: Chat :: Internet Relay Chat",
"Topic :: Games/Entertainment :: Role-Playing",
"Topic :: Utilities"
]
requires-python = ">=3.12"
dependencies = [
"aiosqlite>=0.20.0",
"argon2-cffi>=23.1.0",
"toml>=0.10.2",
]
[project.urls]
homepage = "https://github.com/txtsd/IdleZPGBot"
repository = "https://github.com/txtsd/IdleZPGBot"
issues = "https://github.com/txtsd/IdleZPGBot/issues"
[project.scripts]
idlezpgbot = "src.main:main"
[tool.ruff]
line-length = 120
indent-width = 4
target-version = "py312"
[tool.ruff.format]
quote-style = "single"
indent-style = "space"