-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
61 lines (49 loc) · 1.13 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
[project]
name = "tarina"
version = "0.6.8"
description = "A collection of common utils for Arclet"
authors = [
{name = "RF-Tar-Railt", email = "[email protected]"},
]
dependencies = [
"typing-extensions>=4.4.0",
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "MIT"}
[project.optional-dependencies]
yaml = ["pyyaml>=6.0.1"]
[project.scripts]
tarina-lang = "tarina.lang.__main__:main"
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"pytest~=7.2.0",
"coverage~=7.0.1",
"cython>=3.0.0",
"black>=24.2.0",
"isort>=5.13.2",
"fix-future-annotations>=0.5.0",
"pyyaml>=6.0.1",
]
[tool.cibuildwheel]
# don't build PyPy wheels, install from source instead
skip = "pp*"
[tool.black]
include = '\.pyi?$'
line-length = 120
target-version = ['py39']
[tool.isort]
profile = "black"
[tool.pdm.scripts]
test = "pytest -v -W ignore"
make = "make"
[tool.ruff]
line-length = 120
target-version = "py39"
[tool.ruff.lint]
select = ["E", "W", "F", "UP", "C", "T", "Q"]
ignore = ["E402", "F403", "F405", "C901", "UP037"]