-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
90 lines (76 loc) · 2.21 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["setuptools>=42", "setuptools-scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "lotusrpc"
description = "A code generator for remote procedure calls on embedded systems"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [{ name = "T Zijnge" }]
keywords = [
"code generation",
"embedded systems",
"C++",
"RPC",
"remote procedure call",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Embedded Systems",
]
dependencies = [
"code-generation==2.3.0",
"pyyaml==6.0.2",
"jsonschema==4.23.0",
"click==8.1.8",
]
dynamic = ["version"]
[project.optional-dependencies]
serial = ["pyserial==3.5"]
[project.urls]
homepage = "https://github.com/tzijnge/LotusRpc"
"Bug Tracker" = "https://github.com/tzijnge/LotusRpc/issues"
"Documentation" = "https://tzijnge.github.io/LotusRpc/"
"Source Code" = "https://github.com/tzijnge/LotusRpc"
[project.scripts]
lrpcg = "lrpc.lrpcg:run_cli"
lrpcc = "lrpc.lrpcc:run_cli"
[tool.setuptools.package-data]
"lrpc.schema" = ["lotusrpc-schema.json"]
[tool.setuptools]
include-package-data = true
[tool.setuptools_scm]
local_scheme = "no-local-version"
[tool.pytest.ini_options]
pythonpath = "src"
[tool.black]
line-length = 120
[tool.pylint]
disable = [
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
]
[tool.pylint.format]
# line length is handled by black. Any remaining long lines cannot be formatted properly
disable = ["line-too-long"]
allow-reexport-from-package = true
[tool.mypy]
strict = true
# Increase strictness of checks
disallow_any_decorated = true
strict_optional = true
warn_no_return = true
warn_unreachable = true
# Display statistics after running
# dump_type_stats = true
# dump_inference_stats = true
[tool.coverage.run]
branch=true