From 44eaafe50370c076269e80d9252bca969814d238 Mon Sep 17 00:00:00 2001 From: Simeon Simeonov Date: Tue, 15 Mar 2022 05:54:56 +0100 Subject: Restructure the project in ordere to replace distutils with setup tools --- pyproject.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..1173069 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[build-system] +requires = [ + "setuptools>=51", + "wheel" +] + +build-backend = "setuptools.build_meta" + + +[tool.pytest.ini_options] +minversion = "6.0" +addopts = "-s" +testpaths = [ + "tests" +] -- cgit v1.3