From 90fe3b4a98ec03c2ac34e251955e1a5730bc3550 Mon Sep 17 00:00:00 2001 From: Tomaz Muraus Date: Sun, 6 Aug 2023 18:49:03 +0200 Subject: [PATCH] Merge tool config options from setup.cfg to pyproject.toml and remove now unused setup.cfg file. --- pyproject.toml | 3 +++ setup.cfg | 19 ------------------- 2 files changed, 3 insertions(+), 19 deletions(-) delete mode 100644 setup.cfg diff --git a/pyproject.toml b/pyproject.toml index c2cb37ee67..7996c6fb83 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -96,6 +96,9 @@ exclude-package-data = { "*" = ["secrets.py"], "libcloud.test" = ["secrets.py"] version = {attr = "libcloud.__version__"} readme = {file = ["README.rst"], content-type = "text/x-rst"} +[tool.distutils.bdist_wheel] +universal = true + [tool.black] line_length = 100 diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index fa92211668..0000000000 --- a/setup.cfg +++ /dev/null @@ -1,19 +0,0 @@ -[wheel] -universal = 1 - -[nosetests] -exclude=TestCaseMixin - -[aliases] -test=pytest - -[tool:pytest] -python_classes=*Test -testpaths=libcloud/test -# Ignore UserWarning's -filterwarnings = - ignore::UserWarning - -[flake8] -exclude=libcloud/compute/constants/ec2*.py,libcloud/test -ignore=E402,W503,W504