-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (52 loc) · 1.59 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "reflectai"
version = "1.0.0"
description = "Neuro-symbolic reasoning with abductive reflection — first open-source implementation of ABL-Refl (AAAI 2026 Outstanding Paper)"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [{ name = "wjddusrb03" }]
keywords = [
"neuro-symbolic", "abductive-learning", "reflection",
"reasoning", "sudoku", "constraint-solving", "pytorch",
"z3", "aaai", "logic", "puzzle-solving",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"torch>=2.0",
"numpy>=1.24",
"click>=8.0",
"rich>=13.0",
]
[project.optional-dependencies]
z3 = ["z3-solver>=4.12"]
sat = ["python-sat>=1.8"]
vision = ["torchvision>=0.15", "Pillow>=10.0"]
web = ["gradio>=4.0"]
all = ["z3-solver>=4.12", "python-sat>=1.8", "torchvision>=0.15", "Pillow>=10.0", "gradio>=4.0"]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"z3-solver>=4.12",
]
[project.scripts]
reflectai = "reflectai.cli:main"
[project.urls]
Homepage = "https://github.com/wjddusrb03/reflectai"
Repository = "https://github.com/wjddusrb03/reflectai"
Issues = "https://github.com/wjddusrb03/reflectai/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/reflectai"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]