-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 792 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (37 loc) · 792 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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "bridge"
version = "0.1.0"
description = "Secure By Default"
requires-python = ">=3.8"
dependencies = [
"typing-extensions>=4.0; python_version < '3.11'",
"pyarrow>=15.0.0",
"PyJWT>=2.0"
]
[project.optional-dependencies]
admin = [
"fastapi>=0.100.0",
]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21.0",
"ruff>=0.0.270",
"mypy>=1.3.0",
"bridge[admin]",
]
[tool.maturin]
features = ["pyo3/extension-module"]
module-name = "bridge_rs"
[tool.ruff]
select = ["E", "F", "B", "ANN"]
ignore = ["ANN101", "ANN102"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.mypy]
strict = true
ignore_missing_imports = true
files = ["bridge", "tests"]