diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml index 9855e72..ff728ad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,9 +19,19 @@ dbussy = ["dbussy"] zstandard = ["zstandard"] test = ["pytest", "pytest-forked", "pytest-subtests"] +[build-system] +requires = ["flit_core >=3.8"] +build-backend = "flit_core.buildapi" + [tool.black] line-length = 79 +[tool.flit.module] +name = "linuxnamespaces" + +[tool.flit.sdist] +include = ["conftest.py", "examples/", "README.md", "tests/"] + [tool.mypy] strict = true |