-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (72 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
78 lines (72 loc) · 1.91 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "create-context-graph"
version = "0.9.0"
description = "Interactive CLI scaffolding tool for domain-specific context graph applications"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11"
authors = [
{ name = "William Lyon" },
]
keywords = ["neo4j", "context-graph", "ai-agent", "scaffolding", "cli"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Code Generators",
]
dependencies = [
"click>=8.1",
"questionary>=2.0",
"rich>=13.0",
"jinja2>=3.1",
"pyyaml>=6.0",
"pydantic>=2.0",
"neo4j>=5.20",
]
[project.optional-dependencies]
generate = [
"anthropic>=0.30",
"openai>=1.0",
]
ingest = [
"neo4j-agent-memory[spacy,gliner]>=0.0.5",
]
connectors = [
"PyGithub>=2.0",
"notion-client>=2.0",
"atlassian-python-api>=3.40",
"slack-sdk>=3.20",
"google-api-python-client>=2.100",
"google-auth-oauthlib>=1.0",
"simple-salesforce>=1.12",
]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"pytest-asyncio>=0.24",
]
all = [
"create-context-graph[generate,ingest,connectors]",
]
[project.scripts]
create-context-graph = "create_context_graph.cli:main"
[project.urls]
Homepage = "https://github.com/neo4j-labs/create-context-graph"
Repository = "https://github.com/neo4j-labs/create-context-graph"
[tool.hatch.build.targets.wheel]
packages = ["src/create_context_graph"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
markers = [
"slow: marks tests as slow (run with --slow)",
"integration: marks tests requiring Neo4j (run with --integration)",
]