-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.33 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (42 loc) · 1.33 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"]
build-backend = "setuptools.build_meta"
[project]
name = "rabbai"
version = "2.0.0"
description = "A Torah study chavruta in your terminal — one student, sourced answers, and every side of a disagreement"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
keywords = ["torah", "judaism", "study", "sefaria", "siddur", "cli", "llm"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Natural Language :: Hebrew",
"Programming Language :: Python :: 3",
"Topic :: Religion",
]
dependencies = [
"requests>=2.31",
"flask>=3.0",
]
[project.optional-dependencies]
dev = ["pytest>=8.0"]
[project.scripts]
rabbi = "rabbai.cli:main"
rabbai = "rabbai.cli:main"
[project.urls]
Homepage = "https://github.com/macmenes/rabbai"
Issues = "https://github.com/macmenes/rabbai/issues"
[tool.setuptools]
packages = ["rabbai"]
[tool.setuptools.package-data]
# The profile templates the setup wizard writes from, and the web UI. Both are
# data the installed program reads at runtime, so they have to travel with it.
rabbai = ["templates/*.md", "static/*", "static/icons/*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q --tb=short"