-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 932 Bytes
/
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
[virtualenvs]
create = true
in-project = true
prefer-active-python = true
[tool.poetry]
name = "indico-patcher"
version = "0.2.1"
description = "The Swiss Army knife to customize Indico"
repository = "https://github.com/unconventionaldotdev/indico-patcher"
readme = "README.md"
license = "MIT"
authors = [
"Alejandro Avilés <[email protected]>"
]
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks"
]
[tool.poetry.dependencies]
python = ">=3.12.2,<3.13"
aenum = ">=3.1.15"
indico = ">=3.3"
[tool.poetry.group.dev.dependencies]
mypy = "^1.11.1"
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
ruff = "^0.3.5"
sqlalchemy2-stubs = "^0.0.2a35"
tox = "^4.11.4"
unbeheader = "^1.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"