forked from 1Password/connect-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (23 loc) · 681 Bytes
/
pyproject.toml
File metadata and controls
27 lines (23 loc) · 681 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
[tool.poetry]
name = "onepasswordconnectsdk"
version = "1.5.1"
description = "Python SDK for 1Password Connect"
license = "MIT"
authors = ["1Password"]
readme = "README.md"
repository = "https://github.com/1Password/connect-sdk-python"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/1Password/connect-sdk-python/issues"
"Report Security Issue" = "https://bugcrowd.com/agilebits"
[tool.poetry.dependencies]
python = "^3.9"
python-dateutil = "^2.8.1"
httpx = "^0.28.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pytest-asyncio = "^0.20.3"
pytest-cov = "^4.0.0"
respx = "^0.22.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"