-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (58 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
68 lines (58 loc) · 1.16 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
68
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "xraygpt"
description = "Generate kindle-like x-ray for e-books with LLM"
authors = [
{name = "iaalm", email= "iaalmsimon@gmail.com"}
]
license = {text = "BSD-3"}
readme = "README.md"
requires-python = ">=3.9"
dynamic = [
"version",
]
keywords = [
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"langchain>=0.3",
"langchain-community",
"langchain-openai",
"langchain-chroma",
"loguru",
"ebooklib",
"BeautifulSoup4",
]
[project.optional-dependencies]
azure = [
"azure-core",
"azure-ai-textanalytics",
]
all = [
"xraygpt[azure]",
]
dev = [
"xraygpt[all]",
"hatch",
"build",
"isort",
"black",
"mypy",
"q",
"types-tqdm",
]
[project.urls]
homepage = "https://github.com/iaalm/xraygpt"
repository = "https://github.com/iaalm/xraygpt"
documentation = "https://github.com/iaalm/xraygpt"
[tool.hatch.version]
path = "xraygpt/__about__.py"
[tool.isort]
profile = "black"