-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (42 loc) · 991 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
40
41
42
43
44
45
46
47
[tool.poetry]
name = "labot"
version = "0.1.0"
description = "Labot (LAboratory BOT) supports handbook organizing, teaching, research etc."
authors = ["Gerit Wagner <gerit.wagner@uni-bamberg.de>"]
license = "MIT"
readme = "README.md"
packages = [{include = "labot"}]
[tool.poetry.dependencies]
python = ">=3.10, <3.13"
gitpython = "^3.1.43"
click = "^8.1.7"
pre-commit = "^3.2.0"
colrev-sync = "0.2.0"
docx-mailmerge = "^0.5.0"
pygithub = "^2.5.0"
python-docx = "^1.1.2"
inquirer = "^3.4.0"
pandas = "^2.2.3"
yamale = "^5.2.1"
openai = "^1.58.1"
pypdf2 = "^3.0.1"
colrev = "^0.13.2"
jinja2 = "^3.1.5"
exchangelib = "^5.5.0"
pdfannots = "^0.5"
[tool.poetry.scripts]
labot = "labot.cli:main"
[tool.mypy]
python_version = 3.9
warn_unused_configs = true
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = [
"requests.*",
"yaml.*",
"pkg_resources.*",
]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"