forked from ggozad/oterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
91 lines (83 loc) · 2.27 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[project]
name = "oterm"
version = "0.6.4"
description = "A text-based terminal client for Ollama."
authors = [{ name = "Yiorgis Gozadinos", email = "[email protected]" }]
license = { text = "MIT" }
readme = { file = "README.md", content-type = "text/markdown" }
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
requires-python = ">=3.10"
dependencies = [
"textual>=0.81.0",
"typer>=0.12.4",
"python-dotenv>=1.0.1",
"aiosql>=11.1",
"aiosqlite>=0.20.0",
"pyperclip>=1.9.0",
"packaging>=24.1",
"rich-pixels>=3.0.1",
"pillow>=10.4.0",
"ollama>=0.3.3",
"textualeffects>=0.1.3",
]
[project.urls]
Homepage = "https://github.com/ggozad/oterm"
Repository = "https://github.com/ggozad/oterm"
Issues = "https://github.com/ggozad/oterm/issues"
[project.scripts]
oterm = "oterm.cli.oterm:cli"
[tool.uv]
dev-dependencies = [
"ruff>=0.6.1",
"pdbpp",
"pytest>=8.3.2",
"pytest-asyncio>=0.23.8",
"textual-dev>=1.5.1",
"homebrew-pypi-poet>=0.10.0",
]
[tool.uv.sources]
[tool.ruff]
line-length = 88
# Enable Flake's "E" and "F" codes by default and "I" for sorting imports.
lint.select = ["E", "F", "I"]
lint.ignore = ["E501", "E741"] # E741 should not be ignored
lint.per-file-ignores = { "__init__.py" = ["F401", "F403"] }
# Allow unused variables when underscore-prefixed.
lint.dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
# Exclude a variety of commonly ignored directories.
exclude = [
".direnv",
".eggs",
".git",
".mypy_cache",
".ruff_cache",
".venv",
"__pypackages__",
".cache",
"_build",
"build",
"dist",
"venv",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [
"/screenshots",
"/examples",
]
[tool.hatch.build.targets.wheel]
only-packages = true