-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.02 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
44
45
46
47
[tool.poetry]
name = "church-web-helper"
version = "1.6.2"
description = "A python package to make use of ChurchTools API and Communi API with a docker packaged WebUI"
authors = [
"bensteUEM",
]
homepage = "https://github.com/bensteUEM/ChurchWebHelper"
license = "CC-BY-SA"
readme = "README.md"
include = [
"templates/*.html",
"static/*",
]
[tool.poetry.dependencies]
python = "^3.12"
Flask = "^2.3.2"
Flask-Session = "^0.5.0"
requests = "^2.31.0"
python-docx = "^0.8.11"
gunicorn = "^22.0.0"
python-dotenv = "^1.0.0"
matplotlib = "^3.9.1"
pandas = "^2.2.2"
toml = "^0.10.2"
[tool.poetry.dependencies.churchtools-api]
git = "https://github.com/bensteUEM/ChurchToolsAPI.git"
branch = "master"
[tool.poetry.dependencies.communi-api]
git = "https://github.com/bensteUEM/CommuniAPI.git"
branch = "master"
[tool.poetry.group.dev.dependencies]
poetry = "^1.6.1"
tomli_w = "^1.0.0"
wheel = "^0.41.2"
setuptools = "^66.1.1"
autopep8 = "^2.0.4"
[build-system]
requires = [
"poetry-core",
]
build-backend = "poetry.core.masonry.api"