File: pyproject.toml

package info (click to toggle)
pychurchtools 0.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 408 kB
  • sloc: python: 2,060; makefile: 4
file content (37 lines) | stat: -rw-r--r-- 884 bytes parent folder | download
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 = "churchtools"

[tool.poetry]
name = "churchtools"
version = "0.5.1"
description = "A library for the ChurchTools API"
authors = ["Philipp Glaum <p@pglaum.de>"]
license = "GPLv3"
readme = "README.md"
keywords = ["api", "churchtools"]
classifiers = [
	"Programming Language :: Python :: 3",
	"Operating System :: OS Independent",
	"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]

[tool.poetry.dependencies]
python = "^3.10"
pydantic = "^2.10.6"
requests = "^2.32.3"

[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
mypy = "^1.10.1"
pytest = "^8.2.2"
types-requests = "^2.32.0.20240622"
ipython = "^8.25.0"
pre-commit = "^4.0.1"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[project.urls]
Homepage = "https://github.com/pglaum/pychurchtools"
Issues = "https://github.com/pglaum/pychurchtools/issues"