-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.29 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
[project]
name = "fieldenum"
version = "0.2.0"
description = "Rust-like fielded Enums in Python"
authors = [{ name = "ilotoki0804", email = "ilotoki0804@gmail.com" }]
readme = "README.md"
requires-python = ">=3.12"
keywords = [
"enum",
"dataclass",
"rust",
"functional",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Natural Language :: Korean",
"Intended Audience :: Developers",
"Programming Language :: Rust",
"Typing :: Typed",
]
dependencies = []
[project.urls]
Repository = "https://github.com/ilotoki0804/fieldenum"
Funding = "https://buymeacoffee.com/ilotoki0804"
[tool.uv]
dev-dependencies = [
"ipykernel>=6.29.5",
"pytest>=8.3.2",
"pytest-cov>=5.0.0",
"notebook>=7.2.0",
]
[tool.ruff]
line-length = 120
exclude = [".venv", "tests"]
[tool.ruff.lint]
ignore = ["F821"]
[tool.coverage.report]
exclude_also = [
"unreachable",
"case other:",
"assert False",
"if (typing\\.)?TYPE_CHECKING:",
"@(typing\\.)?deprecated",
"@overload",
'if __name__ == "__main__":'
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"