-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.84 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (43 loc) · 1.84 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tibco-analyzer"
version = "1.1.0"
description = "Deterministic legacy-estate analysis: TIBCO BusinessWorks, Oracle APEX and Oracle PL/SQL knowledge graphs, cross-estate federation, semantic search, blast radius, data lineage, architecture diagrams and LLM context packs."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
keywords = ["tibco", "businessworks", "oracle-apex", "apex", "oracle", "plsql",
"neo4j", "migration", "spring-boot", "static-analysis",
"knowledge-graph", "data-lineage", "cross-estate"]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Quality Assurance",
]
# Zero required runtime dependencies: parsing, graph, BM25 search and diagram
# generation all use the standard library, so the toolkit runs on an
# air-gapped build agent.
dependencies = []
[project.optional-dependencies]
embeddings = ["sentence-transformers>=2.2"]
openai = ["openai>=1.0"]
neo4j = ["neo4j>=5.0"]
# Only needed to pull the Oracle dictionary extract directly instead of running
# apex_analyzer/extract/*.sql through SQLcl and passing the JSON with --db-meta.
oracle = ["oracledb>=2.0"]
dev = ["pytest>=7.0"]
[project.scripts]
tibco-analyze = "tibco_analyzer.cli:main"
apex-analyze = "apex_analyzer.cli:main"
oracle-analyze = "oracle_analyzer.cli:main"
# Reads the three graphs the commands above produce; parses no source.
estate-analyze = "estate_analyzer.cli:main"
[tool.setuptools]
package-dir = { "" = "tools" }
[tool.setuptools.packages.find]
where = ["tools"]
include = ["analyzer_core*", "tibco_analyzer*", "apex_analyzer*",
"oracle_analyzer*", "estate_analyzer*"]
[tool.setuptools.package-data]
apex_analyzer = ["extract/*.sql", "extract/*.md", "*.json"]