-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (68 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
81 lines (68 loc) · 1.78 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
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cstruct"
dynamic = ["version"]
description = "C-style structs for Python"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Andrea Bonomi", email = "andrea.bonomi@gmail.com" }
]
keywords = ["struct", "cstruct", "enum", "binary", "pack", "unpack"]
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
]
[project.urls]
Homepage = "http://github.com/andreax79/python-cstruct"
Source = "http://github.com/andreax79/python-cstruct"
Issues = "http://github.com/andreax79/python-cstruct/issues"
Documentation = "https://python-cstruct.readthedocs.io/en/latest/"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"codespell",
"coverage[toml]",
"ruff",
"markdown_include",
"mkdocs",
"mkdocs-material",
"mkdocstrings",
"mkdocstrings-python",
"mypy"
]
test = [
"pytest",
"pytest-cov",
"coverage[toml]"
]
[tool.setuptools]
zip-safe = true
include-package-data = true
[tool.setuptools.dynamic]
version = { attr = "cstruct.__version__" }
[tool.setuptools.packages.find]
include = ["cstruct*"]
exclude = ["ez_setup", "examples", "tests"]
[tool.ruff]
line-length = 132
[tool.ruff.lint]
ignore = [ "E731", "E711" ]
[tool.coverage.run]
source = ["cstruct"]
[tool.coverage.report]
exclude_lines = [ "# pragma: no cover", "if TYPE_CHECKING:" ]
[tool.isort]
profile = "black"
[tool.black]
line-length = 132