-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
109 lines (102 loc) · 3.12 KB
/
Copy pathpyproject.toml
File metadata and controls
109 lines (102 loc) · 3.12 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
authors = [{email = "alexander@growgraph.dev", name = "Alexander Belikov"}]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython"
]
dependencies = [
"SPARQLWrapper>=2.0.0",
"boto3>=1.35.0,<2",
"click>=8.2.0,<9",
"confluent-kafka>=2.6.0",
"falkordb>=1.0.9",
"ijson>=3.2.3,<4",
"nebula3-python>=3.8.3",
"nebula5-python>=5.2.1",
"neo4j>=5.22.0,<6",
"networkx~=3.3",
"pandas-stubs==2.3.0.250703",
"pandas>=2.0.3,<4",
"psycopg2-binary>=2.9.11",
"pydantic-settings>=2.12.0",
"pydantic>=2.12.5",
"pymgclient>=1.3.1",
"python-arango>=8.1.2,<9",
"rdflib>=7.0.0",
"redis>=5.0.0",
"requests>=2.31.0",
"sqlalchemy>=2.0.0",
"suthing>=0.5.1",
"urllib3>=2.0.0",
"xmltodict>=0.14.2,<0.15"
]
description = "Manifest-driven Graph Schema & Transformation Language (GSTL): define labeled property graph schemas, ingest from CSV/JSON/Parquet/SQL/RDF/SPARQL/API/Kafka sources, infer schemas from PostgreSQL 3NF or OWL/RDFS ontologies, apply schema migrations, and project to ArangoDB, Neo4j, TigerGraph, FalkorDB, Memgraph, or NebulaGraph."
name = "graflo"
readme = "README.md"
requires-python = ">=3.11"
version = "1.12.0"
[project.optional-dependencies]
dev = [
"pre-commit>=4.2.0",
"pytest-timeout>=2.4.0",
"pytest-xdist>=3.8.0",
"pytest>=9.0.2",
"ty>=0.0.1a24"
]
docs = [
"mkdocs-gen-files>=0.5.0",
"mkdocs-glightbox>=0.4.0",
"mkdocs-literate-nav>=0.6.2",
"mkdocs-material>=9.6.12",
"mkdocs-table-reader-plugin>=3.1.0",
"mkdocs>=1.6.1",
"mkdocstrings[python]>=0.29.1"
]
plot = [
"pygraphviz>=1.14"
]
[project.scripts]
graflo = "graflo.cli.main:graflo"
ingest = "graflo.cli.ingest:ingest"
install_tigergraph_queries = "graflo.cli.install_tigergraph_queries:install_tigergraph_queries"
manage_dbs = "graflo.cli.manage_dbs:manage_dbs"
manifest_to_rdf = "graflo.rdf.cli:manifest_to_rdf"
migrate_schema = "graflo.cli.migrate_schema:migrate_schema"
plot_manifest = "graflo.cli.plot_manifest:plot_manifest"
rdf_to_manifest = "graflo.rdf.cli:rdf_to_manifest"
run_tigergraph_queries = "graflo.cli.run_tigergraph_queries:run_tigergraph_queries"
xml2json = "graflo.cli.plot_schema:xml2json"
[project.urls]
Homepage = "https://github.com/growgraph/graflo"
[tool.hatch.build.targets.sdist]
include = ["graflo"]
[tool.hatch.build.targets.wheel]
include = ["graflo"]
[tool.ruff.lint]
# Ruff 0.16 expanded defaults (~413 rules). Keep the new set, but silence
# categories that conflict with intentional patterns in this codebase:
# B017 pytest.raises(Exception); BLE001/S110/S112 broad except cleanup;
# DTZ* naive graph datetimes; E722 bare except; G201 logger.error+exc_info;
# LOG015 CLI root logger; RUF012 class mutable defaults; TRY004 ValueError
# validation API; TRY203 mixin re-raise wrappers.
ignore = [
"B017",
"BLE001",
"DTZ001",
"DTZ007",
"DTZ011",
"E722",
"G201",
"LOG015",
"RUF012",
"S110",
"S112",
"TRY004",
"TRY203"
]