-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (61 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
72 lines (61 loc) · 1.59 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
61
62
63
64
65
66
67
68
69
70
71
[tool.black]
line-length = 160
[tool.isort]
profile = "black"
[tool.ruff]
line-length = 160
[tool.basedpyright]
reportIgnoreCommentWithoutRule = false
[build-system]
requires = [
"setuptools>=61.2.0",
"wheel",
]
[project]
name = "tclaude"
dynamic = ["version"]
description = "A complete terminal implementation of Anthropic's Claude."
authors = [{name = "Thomas Müller", email = "tom@94.me"}]
readme = "README.md"
requires-python = ">=3.12"
license = "GPL-3.0-only"
dependencies = [
"aiofiles",
"aiohttp",
"beautifulsoup4",
"docstring_parser",
"html2text",
"humanize",
"keyring",
"mcp",
"oauthlib",
"packaging",
"partial-json-parser",
"prompt_toolkit",
"wcwidth",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Topic :: Communications :: Chat",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Environment :: Console",
"Operating System :: OS Independent",
"Natural Language :: English",
]
[project.urls]
Repository = "https://github.com/Tom94/tclaude"
[project.scripts]
tclaude = "tclaude.tclaude:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
tclaude = ["default-config/*.toml"]
[tool.setuptools.dynamic]
version = {attr = "tclaude.__version__"}