-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 746 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 746 Bytes
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
[project]
name = "SideBot"
version = "0.0.1"
authors = [
{ name="nythepegasus", email="me@nythepegas.us" },
]
description = "SideBot is a multipurpose bot for the SideStore community."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"discord.py>=2.4.0",
"asyncpg>=0.29.0",
"openai>=1.37.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = [
"build>=1.2.1",
"pylint>=3.1.0",
"asyncpg-stubs>=0.29.1",
"mypy>=1.9.0",
"ruff>=0.3.7",
"pyannotate>=1.2.0",
"types-PyYAML>=6.0.12"
]
[tool.setuptools.package-data]
"pkgname" = ["py.typed"]
[tool.mypy]
disallow_incomplete_defs = true
[tool.pdm]