summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: d9bb0e1d89d4436a7ce111000e342cc2fce30130 (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
[project]
name = "linuxnamespaces"
description = "typed syscall wrappers and plumbing for working with Linux namespaces"
authors = [{name = "Helmut Grohne", email = "helmut@subdivi.de"}]
classifiers = [
  "Development Status :: 3 - Alpha",
  "License :: OSI Approved :: MIT License",
  "Operating System :: POSIX :: Linux",
  "Typing :: Typed",
  "Programming Language :: Python :: 3",
]

[project.optional-dependencies]
test = ["pytest"]
examples = ["dbussy", "zstandard"]

[tool.black]
line-length = 79

[tool.mypy]
strict = true

[tool.pylint]
max-line-length=79