-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 793 Bytes
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 793 Bytes
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
[project]
name = "exactypes"
version = "0.4.0"
description = "Helps creating typed ctypes-based python library"
authors = [
{name = "HivertMoZara", email = "worldmozara@163.com"},
]
license = {text = "MIT"}
dependencies = ["typing_extensions>=4,<5"]
requires-python = ">=3.9"
readme = "README.md"
[project.urls]
Homepage = "https://github.com/NCBM/exactypes"
Repository = "https://github.com/NCBM/exactypes"
[tool.pyright]
pythonVersion = "3.9"
typeCheckingMode = "standard"
ignore = ["build"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
select = [
"E",
"W",
"A",
"ASYNC",
"B",
"C4",
"PYI",
"Q",
"F",
"I",
"UP",
"C90",
"RUF",
"TC",
"PT"
]
ignore = [
"E501",
"B009",
"B010",
"A005"
]