-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (63 loc) · 1.93 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (63 loc) · 1.93 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
72
73
74
[build-system]
requires = ["setuptools>=68", "wheel", "packaging>=24", "virtualenv>=20"]
build-backend = "setuptools.build_meta"
[project]
name = "codexrenderer"
version = "0.2.0"
description = "CodexRenderer & GeminiRenderer: ODT/TXT → Markdown/HTML con tema tipo terminal (CLI y GUI)."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "D4vRAM", email = "d4vram369@proton.me" }
]
keywords = ["odt", "markdown", "html", "pandoc", "renderer", "cli", "tkinter", "gui"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Environment :: Console",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications :: GTK",
"Topic :: Text Processing :: Markup",
]
dependencies = [
"odfpy>=1.4.1",
]
[project.optional-dependencies]
gui = [
"tkinterdnd2>=0.4.2",
]
[project.urls]
Homepage = "https://github.com/D4vRAM369/CodexRenderer"
Issues = "https://github.com/D4vRAM369/CodexRenderer/issues"
[project.scripts]
codexrenderer = "codexrenderer.cli:main"
codexrenderer-gui = "codexrenderer.codexrenderer_gui:main"
geminirenderer = "codexrenderer.gemini_cli:main"
geminirenderer-gui = "codexrenderer.geminirenderer_gui:main"
claudecoderenderer = "codexrenderer.claudecode_cli:main"
claudecoderenderer-gui = "codexrenderer.claudecode_gui:main"
codex-gemini = "codexrenderer.geminirenderer_gui:main"
codex-claude = "codexrenderer.claudecode_gui:main"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
codexrenderer = [
"assets/*.css",
"thirdparty/**/*",
]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.ruff]
line-length = 100
target-version = "py310"
select = ["E", "F", "I", "UP", "B", "W", "C90"]
ignore = []
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-q"