-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.17 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
[project]
name = "onedm"
description = "Common data model for IoT and IoT devices"
keywords = ["iot", "data model"]
authors = [
{name = "Christian Sandberg", email = "[email protected]"},
]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: File Formats",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"pydantic>=2",
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/christiansandberg/onedm.git"
Issues = "https://github.com/christiansandberg/onedm/issues"
[tool.setuptools_scm]
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"
[tool.pylint."messages control"]
disable = [
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"too-many-instance-attributes",
"too-many-return-statements",
"duplicate-code",
"fixme",
]
[tool.pylint.format]
max-line-length = 88
[tool.mypy]
plugins = "pydantic.mypy"