-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (59 loc) · 1.57 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
[project]
name = "chonk"
description = "codebase consolidation tool"
license = { file = "LICENSE" }
requires-python = ">=3.12"
authors = [{ name = "OLILHR" }]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"click>=8.1.7",
"prompt_toolkit>=3.0.47",
"tiktoken>=0.7.0",
"tqdm>=4.66.5",
"types-tqdm>=4.66.0",
]
dynamic = ["version"]
readme = "README.md"
[project.urls]
Changelog = "https://github.com/OLILHR/chonk/releases"
Homepage = "https://github.com/OLILHR/chonk"
[project.scripts]
chonk = "chonk.main:generate_markdown"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.version]
source = "scm"
[tool.pdm.build]
includes = ["chonk"]
excludes = ["/unittests"]
[tool.pdm.readme]
content-type = "text/markdown"
path = "README.md"
[tool.black]
line-length = 120
[tool.isort]
line_length = 120
profile = "black"
[mypy]
truethy-bool = true
[tool.mypy]
disable_error_code = ["no-untyped-def", "no-untyped-call"]
[tool.pylint.format]
max-line-length = 120
[tool.pylint."MESSAGES CONTROL"]
disable = [
"too-few-public-methods",
"fixme",
"missing-docstring"
]