-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 978 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 978 Bytes
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
[tool.poetry]
name = "ai-kernel-explorer"
version = "0.1.5"
description = "Explore the Linux kernel source code with AI-generated summaries"
authors = ["mathiscode <code@mathis.network>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/mathiscode/ai-kernel-explorer"
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: System :: Operating System Kernels",
"Topic :: Utilities"
]
[tool.poetry.scripts]
ai-kernel-explorer = "ai_kernel_explorer.main:main"
[tool.poetry.dependencies]
python = "^3.10"
openai = "^1.38.0"
textual = "^0.75.1"
toml = "^0.10.2"
[tool.poetry.group.dev.dependencies]
textual-dev = "^1.5.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"