-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (51 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
60 lines (51 loc) · 1.44 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
[project]
name = "peblo"
version = "0.0.3"
description = "Peblo is a growing collection of small, everyday intelligent tools."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors=[
{name='Anders Cui'}
]
#maintainers=[
# {name='Anders Cui'}
#]
keywords = ["NLP", "LLM", "CLI"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing",
]
dependencies = [
"beautifulsoup4>=4.14.3",
"ebooklib>=0.20",
"langdetect>=1.0.9",
"lxml>=6.0.2",
"prompt-toolkit>=3.0.52",
"pydantic>=2.12.5",
"pymupdf>=1.27.2",
"python-dotenv>=1.2.1",
"requests>=2.32.5",
"tiktoken>=0.12.0",
"trafilatura>=2.0.0",
"typer>=0.24.1",
]
[project.urls]
Homepage = "https://github.com/anderscui/peblo"
Repository = "https://github.com/anderscui/peblo"
#Issues = "https://github.com/anderscui/peblo/issues"
#Documentation = "https://github.com/anderscui/peblo/wiki"
#Changelog = "https://github.com/anderscui/peblo/blob/main/CHANGELOG.md"
[project.scripts]
peblo = "peblo.cli.main:app"
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
peblo = ["**/*.txt", "**/*.json", "**/*.yaml"]