-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 1.13 KB
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
[tool.poetry]
name = "pdap-access-manager"
version = "0.4.4"
description = "Access Manager for accessing PDAP API"
readme = "README.md"
authors = ["Max Chis <maxachis@gmail.com>"]
license = "MIT"
packages = [{ include = "pdap_access_manager" }]
homepage = "https://github.com/Police-Data-Accessibility-Project/Access-Manager"
repository = "https://github.com/Police-Data-Accessibility-Project/Access-Manager"
documentation = "https://github.com/Police-Data-Accessibility-Project/Access-Manager"
keywords = []
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = ">=3.11"
aiohttp = "3.11.18"
requests = "2.32.3"
pydantic = "2.11.3"
boltons = "^25.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
pytest-asyncio = "^0.26.0"
environs = "^14.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Issues" = "https://github.com/Police-Data-Accessibility-Project/Access-Manager/issues"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
testpaths = ["tests"]