-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.31 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (47 loc) · 1.31 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
[project]
name = "cloctui"
version = "0.2.4"
description = "A TUI interface for the CLOC code analysis tool, using the Textual framework."
readme = "README.md"
authors = [
{ name = "Edward Jazzhands", email = "ed.jazzhands@gmail.com" }
]
license = { text = "MIT" }
keywords = ["python", "textual", "tui", "slidecontainer", "widget"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
requires-python = ">=3.10"
dependencies = [
"click>=8.1.8",
"textual>=4.0.0",
]
[project.scripts]
cloctui = "cloctui.cli:run"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.urls]
Repository = "https://github.com/edward-jazzhands/cloctui"
Changelog = "https://github.com/edward-jazzhands/cloctui/blob/master/Changelog.md"
[dependency-groups]
dev = [
"black>=24.8.0",
"mypy>=1.14.1",
"ruff>=0.11.8",
"textual-dev>=1.7.0",
]
[tool.black]
line-length = 110
[tool.mypy]
python_version = "3.10"
pretty = true
strict = true