diff options
-rw-r--r-- | pyproject.toml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..e81eabd --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,23 @@ +[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"] + +[tool.black] +line-length = 79 + +[tool.mypy] +strict = true + +[tool.pylint] +max-line-length=79 |