-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 1.08 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
[project]
name = "ape-linux"
version = "0.3.5"
description = "AI for Linux commands"
readme = "README.md"
license = {text = "MIT License"}
authors = [
{ name = "Seto Balian", email = "seto.balian@gmail.com" }
]
maintainers = [
{ name = "Seto Balian", email = "seto.balian@gmail.com" }
]
keywords = ["ai", "llm", "linux", "openai"]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development",
"License :: OSI Approved :: MIT License",
]
requires-python = ">=3.10"
dependencies = [
"openai>=1.76.0",
"rich>=14.0.0",
"typer>=0.15.2",
]
[project.urls]
Homepage = "https://github.com/sbalian/ape"
Repository = "https://github.com/sbalian/ape"
[project.scripts]
ape = "ape_linux:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pyright>=1.1.400",
"pytest>=8.3.5",
"ruff>=0.11.7",
]
[tool.pyright]
[tool.ruff]
target-version = "py313"
[tool.ruff.lint]
select = ["F", "E", "W", "I001"]
[tool.ruff.lint.isort]
known-first-party = ["ape_linux"]