-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 916 Bytes
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 916 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
[project]
name = "ncoreparser"
version = "4.5.3"
description = "Package to download from ncore.pro"
authors = [
{ name="Aron Radics", email="aron.radics.jozsef@gmail.com" }
]
license = "MIT"
readme = "Readme.md"
dependencies = [
"httpx>=0.26.0",
]
requires-python = ">=3.9"
[dependency-groups]
dev = [
"pytest",
"ruff",
"ty",
]
[project.urls]
Repository = "https://github.com/radaron/ncoreparser.git"
[build-system]
requires = ["uv_build>=0.9.2,<0.10.0"]
build-backend = "uv_build"
[tool.ruff]
line-length = 120
[tool.ty.rules]
unresolved-reference = "error"
unresolved-import = "error"
unresolved-attribute = "error"
invalid-assignment = "error"
invalid-argument-type = "error"
invalid-return-type = "error"
missing-argument = "error"
possibly-missing-attribute = "error"
possibly-missing-import = "error"
possibly-unresolved-reference = "error"
redundant-cast = "error"
undefined-reveal = "error"