-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 753 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 753 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
[project]
name = "risk-api"
version = "0.1.0"
description = "Augur - smart contract risk scoring API with x402 payments"
requires-python = ">=3.10"
dependencies = [
"flask>=3.0,<4",
"x402[flask,evm]>=2.3.0,<2.4",
"requests>=2.31,<3",
"python-dotenv>=1.0,<2",
"httpx>=0.27",
"gunicorn>=22.0,<24",
"jsonschema>=4.0",
"PyJWT>=2.8",
"cryptography>=42.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"responses>=0.25",
"pytest-cov>=5.0",
]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"integration: tests that hit real external services",
]