aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 9a9f8b624a564999362e57d22b9241dd5efb1161 (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
[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]
extension-pkg-allow-list = ["_ouroboros_dev_cffi", "_ouroboros_irm_cffi"]
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