|
1 | 1 | [build-system] |
| 2 | +<<<<<<< before updating |
2 | 3 | requires = ["hatchling"] |
3 | 4 | build-backend = "hatchling.build" |
| 5 | +======= |
| 6 | +requires = [ |
| 7 | + "hatchling", |
| 8 | +] |
| 9 | +build-backend="hatchling.build" |
| 10 | +>>>>>>> after updating |
4 | 11 |
|
5 | 12 | [project] |
6 | 13 | name = "hatch-cpp" |
7 | | -authors = [{name = "the hatch-cpp authors", email = "t.paine154@gmail.com"}] |
| 14 | +authors = [ |
| 15 | + {name = "the hatch-cpp authors", email = "t.paine154@gmail.com"}, |
| 16 | +] |
8 | 17 | description = "Hatch plugin for C++ builds" |
9 | 18 | readme = "README.md" |
10 | 19 | license = { text = "Apache-2.0" } |
@@ -54,6 +63,7 @@ develop = [ |
54 | 63 | "pytest-cov", |
55 | 64 | "ruff>=0.9,<0.15", |
56 | 65 | "twine", |
| 66 | + "ty", |
57 | 67 | "uv", |
58 | 68 | "wheel", |
59 | 69 | # test |
@@ -118,26 +128,50 @@ artifacts = [] |
118 | 128 | src = "/" |
119 | 129 |
|
120 | 130 | [tool.hatch.build.targets.sdist] |
121 | | -packages = ["hatch_cpp"] |
| 131 | +packages = [ |
| 132 | + "hatch_cpp", |
| 133 | +] |
122 | 134 |
|
123 | 135 | [tool.hatch.build.targets.wheel] |
124 | | -packages = ["hatch_cpp"] |
| 136 | +packages = [ |
| 137 | + "hatch_cpp", |
| 138 | +] |
125 | 139 |
|
126 | 140 | [tool.pytest.ini_options] |
127 | | -addopts = ["-vvv", "--junitxml=junit.xml"] |
| 141 | +addopts = [ |
| 142 | + "-vvv", |
| 143 | + "--junitxml=junit.xml", |
| 144 | +] |
128 | 145 | testpaths = "hatch_cpp/tests" |
129 | 146 |
|
130 | 147 | [tool.ruff] |
131 | 148 | line-length = 150 |
132 | 149 |
|
133 | 150 | [tool.ruff.lint] |
134 | | -extend-select = ["I"] |
| 151 | +extend-select = [ |
| 152 | + "I", |
| 153 | +] |
135 | 154 |
|
136 | 155 | [tool.ruff.lint.isort] |
137 | 156 | combine-as-imports = true |
138 | 157 | default-section = "third-party" |
139 | | -known-first-party = ["hatch_cpp"] |
140 | | -section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"] |
| 158 | +known-first-party = [ |
| 159 | + "hatch_cpp", |
| 160 | +] |
| 161 | +section-order = [ |
| 162 | + "future", |
| 163 | + "standard-library", |
| 164 | + "third-party", |
| 165 | + "first-party", |
| 166 | + "local-folder", |
| 167 | +] |
141 | 168 |
|
142 | 169 | [tool.ruff.lint.per-file-ignores] |
| 170 | +<<<<<<< before updating |
143 | 171 | "__init__.py" = ["F401", "F403"] |
| 172 | +======= |
| 173 | +"__init__.py" = [ |
| 174 | + "F401", |
| 175 | + "F403", |
| 176 | +] |
| 177 | +>>>>>>> after updating |
0 commit comments