-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
54 lines (45 loc) · 1.18 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
[project]
name = "no-code"
version = "0.0.2"
description = "The best way to write code is to write no code at all."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE.txt"]
requires-python = ">=3.10"
authors = [{ name = "Lemonyte", email = "contact@lemonyte.com" }]
keywords = ["no code", "invisible", "encoding", "joke"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
[project.urls]
Repository = "https://github.com/lemonyte/no-code"
[project.scripts]
no_code = "no_code.__main__:no_code_cmd"
yes_code = "no_code.__main__:yes_code_cmd"
[dependency-groups]
dev = [
"prek~=0.2.27",
"pytest-cov~=7.0.0",
"pytest~=9.0.2",
"ty~=0.0.2",
]
[build-system]
requires = ["uv_build>=0.11.5,<0.12"]
build-backend = "uv_build"
[tool.uv.build-backend]
data = { purelib = "purelib" }
[tool.ruff]
src = ["src"]
exclude = ["tests/code/**"]
line-length = 120
[tool.ruff.lint]
select = ["ALL"]
ignore = ["A", "D", "T"]
[tool.ruff.lint.per-file-ignores]
"**/tests/*" = ["S101", "S603"]
[tool.ty.src]
exclude = ["tests/code/**"]