-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (72 loc) · 1.88 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (72 loc) · 1.88 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
78
79
80
81
[project]
name = "upjack"
version = "0.5.2"
description = "Schema-driven entity management for AI-native applications"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.13"
authors = [
{ name = "NimbleBrain Inc", email = "hello@nimblebrain.ai" },
]
keywords = ["nimblebrain", "upjack", "mcp", "agent", "ai", "declarative", "entity-management", "schema-driven", "json-schema"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"jsonschema>=4.0",
"referencing>=0.35.0",
"python-ulid>=3.0",
"typing_extensions>=4.0",
]
[project.optional-dependencies]
mcp = ["fastmcp>=3.0"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/upjack"]
[tool.ruff]
target-version = "py313"
line-length = 100
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = [
"E501", # line too long - handled by formatter
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[dependency-groups]
dev = [
"fastmcp>=3.0",
"pytest>=8.4.2",
"pytest-cov>=6.0.0",
"ruff>=0.13.1",
"ty>=0.0.1a14",
]
e2e = [
"mcp>=1.3.2",
"pytest>=8.4.2",
"pytest-asyncio>=0.24.0",
]
[project.scripts]
upjack = "upjack.cli:main"
[project.urls]
Homepage = "https://github.com/NimbleBrainInc/upjack"
Repository = "https://github.com/NimbleBrainInc/upjack.git"
Issues = "https://github.com/NimbleBrainInc/upjack/issues"