Spaces:
Sleeping
Sleeping
File size: 1,040 Bytes
a9a9428 | 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 | [build-system]
requires = ["setuptools>=68.2.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "scripture_detector"
version = "0.0.1"
description = "Scripture Detector: A tool for detecting scripture in medieval texts."
readme = {text = "", content-type = "text/plain"}
authors = [
{ name = "Martin Rocek", email = "silence.sys@gmail.com"},
{ name = "Gleb Schmidt", email = "gleb.schmidt@ru.nl" },
]
license = "MIT"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dependencies = [
"tomli; python_version < '3.11'",
"python-dotenv",
"tqdm",
"pandas",
"gdown",
"bs4",
"lxml",
"requests",
"openai",
"chromadb",
"sentence_transformers",
"google-genai>=1.66.0",
"rich>=14.3.3",
"flask>=3.1.3",
]
requires-python = ">=3.11.9"
[project.optional-dependencies]
dev = ["pytest"]
[project.urls]
Homepage = "https://github.com/glsch"
[tool.setuptools]
py-modules = ["app", "database", "main"]
packages = []
|