-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (72 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
86 lines (72 loc) · 2.08 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
75
76
77
78
79
80
81
82
83
84
85
86
[project]
name = "entari-cli"
dynamic = ["version"]
description = "Entari Command Line Tool, extract from arclet.entari.__main__"
authors = [
{name = "RF-Tar-Railt", email = "rf_tar_railt@qq.com"},
]
dependencies = ["cli-lite>=0.11.2", "colorama>=0.4.6", "tomlkit>=0.13.3", "ruamel-yaml>=0.18.15", "python-dotenv>=1.1.1", "packaging>=25.0", "findpython>=0.7.0"]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "MIT"}
keywords = ["bot", "dependency", "entari"]
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Build Tools",
"Framework :: Robot Framework",
"Framework :: Robot Framework :: Library",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.optional-dependencies]
virtualenv = [
"virtualenv>=20.34.0",
]
[project.scripts]
entari = "entari_cli.__main__:main"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.version]
source = "file"
path = "src/entari_cli/__init__.py"
[tool.pdm.build]
include = ["src/"]
[dependency-groups]
dev = [
"isort==5.13.2",
"black>=25.1.0",
"ruff>=0.12.9",
]
[tool.black]
line-length = 120
target-version = ["py39", "py310", "py311", "py312"]
include = '\.pyi?$'
extend-exclude = '''
'''
[tool.isort]
profile = "black"
line_length = 120
skip_gitignore = true
force_sort_within_sections = false
extra_standard_library = ["typing_extensions"]
[tool.ruff]
line-length = 120
target-version = "py39"
[tool.ruff.lint]
select = ["E", "W", "F", "UP", "C", "T", "PYI", "PT", "Q"]
ignore = ["C901", "T201", "E731", "E402", "PYI055"]
[tool.pyright]
pythonVersion = "3.9"
pythonPlatform = "All"
typeCheckingMode = "basic"
[tool.pdm.scripts]
format = { composite = ["isort ./src/","black ./src/","ruff check ./src/"] }