blob: d6f94c5c4791fdac1affe34b936fa0eed891ad17 (
plain)
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
|
# SPDX-FileCopyrightText: 2016 - 2026 Dimitri Staessens
# SPDX-License-Identifier: LGPL-2.1-only
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8", "cffi>=1.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "PyOuroboros"
dynamic = ["version"]
description = "Python API for Ouroboros"
license = "LGPL-2.1-only"
requires-python = ">=3.8"
authors = [{ name = "Dimitri Staessens", email = "dimitri@ouroboros.rocks" }]
keywords = ["ouroboros", "IPC"]
dependencies = ["cffi>=1.0.0"]
[project.urls]
Homepage = "https://ouroboros.rocks"
[tool.setuptools]
packages = ["ouroboros"]
[tool.setuptools_scm]
[tool.pylint.main]
ignored-modules = [
"setuptools_scm",
"_ouroboros_dev_cffi",
"_ouroboros_irm_cffi",
]
[tool.pylint.format]
max-line-length = 100
[tool.pylint.design]
max-args = 10
max-positional-arguments = 10
max-attributes = 10
max-public-methods = 30
|