forked from vitorsilverio/libraryapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 805 Bytes
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 805 Bytes
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
[tool.black]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.poetry]
name = "libraryapi"
version = "1.0.0"
description = "An API to get MARC data from Pergamum."
authors = ["Vítor <[email protected]>"]
license = "GPL-3.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "==0.116.2"
pymarc = "==5.3.1"
uvicorn = {version = "==0.35.0", extras = ["standard"]}
xmltodict = "==1.0.2"
zeep = {version = "==4.3.2", extras = ["async"]}
httpx = "==0.28.1"
[tool.poetry.group.dev.dependencies]
pre-commit = "==4.3.0"
pytest = "==8.4.2"
pipenv = "==2025.0.4"
ruff = "*"
mypy = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"