This repository was archived by the owner on Mar 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (55 loc) · 1.48 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 = "vndb"
description = "VNDB Novel Data Breakup"
keywords = ["data-visualization", "vndb", "visual-novel", "game", "galgame"]
requires-python = ">=3.12"
authors = [{ name = "Vinfall" }]
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
"Topic :: Games/Entertainment",
"Topic :: Scientific/Engineering :: Visualization",
"Private :: Do Not Upload",
]
dependencies = ["pandas>=2.2.3", "numpy"]
[project.urls]
homepage = "https://github.com/Vinfall/vndb"
source = "https://github.com/Vinfall/vndb"
[tool.ruff]
# force-exclude = true
unsafe-fixes = true
# https://docs.astral.sh/ruff/rules/
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"E501", # EditorConfig
"COM", # commas
"D1", # docstring
"D212",
"D203", # prefer D211
"ERA", # commented-out-code
"FIX", # fixme
"TD002", # todo
"TD003",
"PLR2004", # magic-value-comparison
"PTH", # flake8-use-pathlib: slower than os
"RET505", # superfluous-else-return
"RET508", # superfluous-else-break
"T20", # print
# project-specific
"ANN",
"PD901",
"PD008",
]
# unfixable = ["F401"]
[[tool.mypy.overrides]]
module = ["pandas.*", "plotly.*"]
ignore_missing_imports = true
[tool.sqlfluff.core]
dialect = "postgres"
ignore = ["lexing"]
[tool.sqlfluff.rules.references]
special_chars.allow_space_in_identifier = true # "Release date"