-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (67 loc) · 1.96 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (67 loc) · 1.96 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.backends._legacy:_Backend"
[project]
name = "nullstate"
version = "0.2.0"
description = "Open-source payment infrastructure for AI agents — x402 crypto + AP2 enterprise settlement"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11"
dependencies = [
"cryptography>=41.0",
"pydantic>=2.0",
"requests>=2.31",
"solders>=0.21",
"fastapi>=0.100",
"uvicorn>=0.20",
]
[project.urls]
Homepage = "https://greensol.me/nullstate"
Source = "https://github.com/NullStateGGH/nullstate"
Documentation = "https://greensol.me/nullstate/docs"
Dataset = "https://huggingface.co/datasets/NullStateV1/nullstate-training-data"
Model = "https://huggingface.co/NullStateV1/nullstate-intelligence"
[project.scripts]
nullstate = "nullstate.cli:main"
nullstate-gateway = "nullstate.network.gateway:main"
nullstate-mcp = "nullstate.network.mcp_server:main"
nullstate-serve = "nullstate.api.model_api:main"
nullstate-train = "nullstate.training.synthesize_dataset:main"
nullstate-dataset = "nullstate.training.expand_dataset:build"
nullstate-email = "nullstate.mail.server:main"
nullstate-synth = "nullstate.training.synthesize_dataset:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["nullstate*"]
[tool.setuptools]
package-dir = {"" = "src"}
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"pytest-mock>=3.0",
"ruff>=0.4",
"paramiko>=3.0",
]
prod = [
"sentry-sdk>=2.0",
"paramiko>=3.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
markers = [
"unit: Unit tests (fast, no external deps)",
"integration: Tests that need services running",
"slow: Tests that take >10s",
]
[tool.ruff]
line-length = 120
target-version = "py313"
[tool.ruff.lint]
ignore = ["E501", "E402", "F401", "E731", "F403"]
select = ["E", "F", "W"]
[tool.coverage.run]
source = ["src"]
omit = ["*/tests/*", "*/__pycache__/*"]