-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (42 loc) · 1.17 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
48
49
50
[tool.poetry]
name = "proxy-mediator"
version = "0.1.6"
description = "Mediator service used to enable cloud agents to run behind a firewall"
authors = ["Daniel Bluhm <[email protected]>", "Char Howland <[email protected]>"]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = "^3.9"
aries-staticagent = "^0.9.0-rc1"
pydantic = "^1.8.2"
python-statemachine = "^0.8.0"
inflection = "^0.5.1"
ConfigArgParse = "^1.5.3"
aries-askar = "^0.2.2"
multiformats = "^0.3.1"
did-peer-2 = "^0.1.2"
did-peer-4 = "^0.1.4"
pydid = "^0.4.3"
[tool.poetry.dev-dependencies]
pre-commit = "^2.15.0"
black = "24.1.1"
ruff = "0.1.2"
pytest = "^6.2.5"
pytest-cov = "^2.12.1"
pytest-asyncio = "^0.15.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
useLibraryCodeForTypes = true
[tool.ruff]
select = ["E", "F", "C", "D"]
ignore = [
# Google Python Doc Style
"D203", "D204", "D213", "D215", "D400", "D401", "D404", "D406", "D407",
"D408", "D409", "D413",
"D202", # Allow blank line after docstring
"D104", # Don't require docstring in public package
]
line-length = 90
[tool.ruff.per-file-ignores]
"**/{tests}/*" = ["F841", "D", "E501"]