-
-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 904 Bytes
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 904 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
44
45
46
47
48
49
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mergework"
version = "0.1.0"
description = "Proof-of-open-source-work ledger for MRWK"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
dependencies = [
"alembic>=1.13.2",
"cryptography>=43.0.0",
"fastapi>=0.115.0",
"httpx>=0.27.0",
"jinja2>=3.1.4",
"python-multipart>=0.0.9",
"sqlalchemy>=2.0.31",
"uvicorn[standard]>=0.30.0",
]
[project.optional-dependencies]
dev = [
"mypy>=1.10.0",
"pytest>=8.2.0",
"ruff>=0.5.0",
]
[tool.hatch.build.targets.wheel]
packages = ["app"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.mypy]
python_version = "3.12"
plugins = []
strict = true
warn_return_any = true
warn_unused_configs = true
exclude = ["tests"]
[tool.pytest.ini_options]
testpaths = ["tests"]