-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (57 loc) · 1.82 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (57 loc) · 1.82 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
[build-system]
requires = ["setuptools>=77.0"]
build-backend = "setuptools.build_meta"
[project]
name = "law-checker"
version = "0.2.4"
description = "Source-grounded legal first-look skill and statute registry workflow for German law."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "ellmos-ai" }
]
keywords = [
"german-law",
"legal-ai",
"statute-grounded",
"claude-code-skill",
"local-first",
"rdg-self-use",
"legal-first-look",
"law-checker"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Legal Industry",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"requests>=2.28.0",
"urllib3>=1.26.0",
]
[project.urls]
Homepage = "https://github.com/ellmos-ai/law-checker"
Repository = "https://github.com/ellmos-ai/law-checker"
Documentation = "https://github.com/ellmos-ai/law-checker#readme"
Changelog = "https://github.com/ellmos-ai/law-checker/blob/main/CHANGELOG.md"
Issues = "https://github.com/ellmos-ai/law-checker/issues"
Security = "https://github.com/ellmos-ai/law-checker/blob/main/SECURITY.md"
"Parent Organization" = "https://github.com/ellmos-ai"
"Umbrella Ecosystem" = "https://github.com/open-bricks"
[tool.setuptools.packages.find]
where = ["."]
include = ["_tools*"]
exclude = ["agents*", "assets*", "references*", "tests*", "docs*", "_gutachten*", "_data*"]
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = ["tests", "_tools"]
pythonpath = ["."]