-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
189 lines (171 loc) · 5.67 KB
/
Copy pathpyproject.toml
File metadata and controls
189 lines (171 loc) · 5.67 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
[build-system]
requires = ["maturin>=1.9.3,<2.0"]
build-backend = "maturin"
[project]
name = "basedpython"
version = "0.0.1a9"
description = "a transpiler for both Python and basedpython"
authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }]
readme = "README.md"
requires-python = ">=3.7"
license = "MIT"
license-files = ["LICENSE"]
keywords = [
"automation",
"flake8",
"pycodestyle",
"pyflakes",
"pylint",
"clippy",
]
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"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",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Rust",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Pre-processors",
"Topic :: Software Development :: Code Generators",
]
[project.urls]
Repository = "https://github.com/KotlinIsland/basedpython"
Documentation = "https://kotlinisland.github.io/basedpython/"
Changelog = "https://github.com/KotlinIsland/basedpython/blob/main/CHANGELOG.md"
# builds the standalone distribution crate, which produces both the `by`
# (type-checker / transpiler) and `buff` (linter / formatter) binaries. maturin
# packages every bin of the target crate as a console script, so the wheel ships
# both. no python module: a single `python -m basedpython` would be ambiguous
# between the two tools, so they're exposed purely as the `by` and `buff` scripts
[tool.maturin]
bindings = "bin"
manifest-path = "crates/basedpython/Cargo.toml"
strip = true
[dependency-groups]
dev = [
"prek==0.4.12",
]
docs = [
"basedpython-pygments",
"zensical",
]
release = [
"rooster==0.1.1",
]
[tool.uv.sources]
# the pygments lexer that highlights `by` code blocks in the docs
basedpython-pygments = { path = "python/basedpython-pygments" }
[tool.uv.dependency-groups]
dev = { requires-python = ">=3.12" }
docs = { requires-python = ">=3.12" }
release = { requires-python = ">=3.12" }
[tool.ruff]
target-version = "py38"
extend-exclude = [
# benchmark programs are measurement inputs, not code. an autofix that
# rewrites `i = i + 1` or hoists a loop changes what is being measured, and
# the isort rule alone would put `from __future__ import annotations` at the
# top of every one of them
"scripts/native-bench/programs/",
"crates/ty_vendored/vendor/",
"crates/ruff/resources/",
"crates/ruff_linter/resources/",
"crates/ruff_python_formatter/resources/",
"crates/ruff_python_parser/resources/",
"crates/ruff_python_semantic/resources/"
]
[tool.ruff.lint]
select = [
"E", # pycodestyle (error)
"F", # pyflakes
"B", # bugbear
"B9",
"C4", # flake8-comprehensions
"SIM", # flake8-simplify
"I", # isort
"UP", # pyupgrade
"PIE", # flake8-pie
"PGH", # pygrep-hooks
"PYI", # flake8-pyi
"RUF",
"S602", # flake8-bandit: subprocess-popen-with-shell-equals-true
]
ignore = [
# only relevant if you run a script with `python -0`,
# which seems unlikely for any of the scripts in this repo
"B011",
# Leave it to the formatter to split long lines and
# the judgement of all of us.
"E501"
]
[tool.ruff.lint.per-file-ignores]
# a pygments lexer declares its public api as plain class attributes, and the
# framework reads `tokens` at class-creation time. `ClassVar` annotations would
# be correct at runtime but unique to this lexer among every lexer pygments has
"python/basedpython-pygments/**" = ["RUF012"]
[tool.ruff.lint.isort]
required-imports = ["from __future__ import annotations"]
combine-as-imports = true
[tool.ruff.per-file-target-version]
"crates/ty_python_semantic/mdtest.py" = "py310"
"crates/ty_vendored/ty_extensions/*.pyi" = "py312"
[tool.black]
force-exclude = '''
/(
| crates/ty_vendored/vendor
| crates/ruff_linter/resources
| crates/ruff_python_formatter/resources
| crates/ruff_python_parser/resources
)/
'''
[tool.rooster]
major_labels = [] # Ruff never uses the major version number
minor_labels = ["breaking"] # Bump the minor version on breaking changes
ignore_labels = ["internal", "ci", "testing", "ty"]
version_files = [
"README.md",
"pyproject.toml",
# Might become unneeded once Markdown formatting is stabilized.
"docs/formatter.md",
"docs/integrations.md",
"docs/tutorial.md",
"crates/ruff/Cargo.toml",
"crates/ruff_linter/Cargo.toml",
# Note that the value being replaced here needs to be kept in sync with the
# validation regex in the `violation_metadata` macro.
{ target = "crates/ruff_linter/src/rules/**/*.rs", replace = "NEXT_RUFF_VERSION" },
"crates/ruff_wasm/Cargo.toml",
"scripts/benchmarks/pyproject.toml",
]
[tool.rooster.section-labels]
"Breaking changes" = ["breaking"]
"Preview features" = ["preview"]
"Bug fixes" = ["bug"]
"Rule changes" = [
"diagnostics",
"docstrings",
"rule",
"fixes",
"isort",
]
"Performance" = ["performance"]
"Formatter" = ["formatter"]
"Server" = ["server"]
"CLI" = ["cli"]
"Configuration" = ["configuration"]
"Documentation" = ["documentation"]
"Other changes" = ["__unknown__"]