-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 928 Bytes
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 928 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
[project]
name = "pystructs"
version = "0.4.0"
description = "c-like struct implementation for human"
readme = "README.md"
requires-python = ">=3.13"
license = "MIT"
authors = [
{name = "moreal", email = "dev.moreal@gmail.com"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.urls]
Homepage = "https://github.com/moreal/pystructs"
Repository = "https://github.com/moreal/pystructs"
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
"codecov",
"ruff",
]
docs = [
"sphinx",
"sphinx-rtd-theme>=2.0.0",
"sphinx-autodoc-typehints",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 88
target-version = "py314"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"