-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 1.01 KB
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
44
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ada"
version = "0.1.0"
description = "Ada is a Matrix bot built with matrix.py framework. It provides various functionalities and can be extended with plugins."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"matrix-python>=1.4.9a0",
"coloredlogs==15.0.1",
"click==8.3.2",
"sqlmodel-toolkit @ git+https://github.com/Code-Society-Lab/sqlmodel-toolkit.git",
"pelican-migration>=0.1.2a0"
]
[project.optional-dependencies]
dev = [
"black==26.3.1",
"pytest==9.0.3",
"pytest-cov>=5.0.0",
"pytest-asyncio>=0.24",
"flake8==7.3.0",
"mypy==1.20.1",
"types-PyYAML==6.0.12.20260408"
]
[project.scripts]
ada = "bot.cli:cli"
[tool.setuptools.packages.find]
include = ["bot*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.mypy]
[[tool.mypy.overrides]]
module = ["nio.*", "matrix.*", "coloredlogs.*"]
ignore_missing_imports = true