-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (44 loc) · 1006 Bytes
/
pyproject.toml
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 = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "lmtk"
authors = [{name = "Lucas Hansen", email = "lucashansen@gmail.com"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["version", "description"]
dependencies = [
"beautifulsoup4 >=4.0",
"dataclasses-json >=0.5",
"jsonpatch >=1.32",
"markdown-it-py[plugins] >=2.0",
"openai >=0.25",
"prompt_toolkit >=3.0",
"pyperclip >=1.0",
"requests >=2.0",
"rich >=12.0",
"tiktoken >=0.1",
"typer >=0.7",
"pyyaml >=6.0"
]
requires-python = ">=3.9"
[project.optional-dependencies]
extras = [
"ipykernel >=6.0",
"jupyter_client >=6.0",
"guesslang-experimental >=2.2.3",
]
jupyter = [
"ipykernel >=6.0",
"jupyter_client >=6.0",
]
syntax = [
"guesslang-experimental >=2.2.3",
]
[project.urls]
Home = "https://github.com/veered/lmtk"
[project.scripts]
lmtk = "lmtk.cli:run"
[tool.flit.module]
name = "lmtk"