-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (68 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
74 lines (68 loc) · 1.63 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
[project]
name = "hyperleda"
description = "Hyperleda web-service client"
readme = "README.md"
license = { file = "LICENSE" }
version = "0.1.0"
requires-python = ">=3.13"
authors = [{ name = "HyperLeda Team" }]
keywords = ["hyperleda", "astronomy", "extragalactic"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"build>=1.2.2.post1",
"dacite>=1.9.2",
"datamodel-code-generator>=0.26.5",
"pandas>=2.2.3",
"parameterized>=0.9.0",
"pydantic>=2.11.4",
"requests>=2.32.3",
"ruff>=0.9.4",
"setuptools>=75.8.0",
]
[project.urls]
"Homepage" = "https://github.com/HyperLEDA/client"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 120
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = 60
[tool.ruff.lint]
ignore = [
"N818", # ignore SomeException -> SomeError rule
"B024", # abstract class without abstract methods
"B017", # ignore assertRaises(Exception)
]
# see https://docs.astral.sh/ruff/rules/ for description of each rule set.
select = [
"E",
"F",
"I",
"N",
"UP",
"YTT",
"B",
"A",
"C4",
"DTZ",
"PIE",
"RET",
"SLF",
"PTH",
"PLE",
"FLY",
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = [
"F403", # ignore star imports warning in __init__ files
]