-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (61 loc) · 1.36 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (61 loc) · 1.36 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
[project]
name = "neuroprompt-semantic-compiler"
version = "1.0.0rc2"
description = "Semantic prompt compiler that converts messy prompts into NSL and reconstructed model-ready instructions."
requires-python = ">=3.10"
readme = "README.md"
authors = [{name = "NeuroPrompt Team"}]
dependencies = ["PySide6>=6.11"]
[project.scripts]
npsc = "npsc_cli:run_cli"
npsc-gui = "npsc_gui.main:main"
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
py-modules = [
"benchmark_quality",
"compilation_profiles",
"compiler_defaults",
"constraint_normalizer",
"context_loss_verifier",
"exporters",
"hybrid_output",
"i18n",
"model_adapter",
"npsc_cli",
"npsc_service",
"nsl_compiler",
"nsl_parser",
"profile_selector",
"prompt_reconstructor",
"report_builder",
"resource_paths",
"rop_template",
"semantic_dictionary",
"semantic_extractor",
"semantic_ir",
"semantic_seed_mapper",
"token_estimator",
"utils"
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
npsc_resources = ["configs/*.json", "assets/icons/*.svg"]
[tool.pytest.ini_options]
testpaths = ["tests"]
norecursedirs = [
".venv",
"dist",
"build",
"backups",
"_backups",
"outputs",
"staging",
"*.egg-info",
".pytest_cache",
"__pycache__"
]
python_files = ["test_*.py"]