Set tests_directory to empty.

This commit is contained in:
Patrick Lehmann
2024-01-17 23:01:19 +01:00
parent c8c793dd86
commit cfdff6a993
8 changed files with 50 additions and 31 deletions

View File

@@ -28,6 +28,7 @@
# SPDX-License-Identifier: Apache-2.0 #
# ==================================================================================================================== #
#
"""Package installer for 'pyDummy'."""
from setuptools import setup
from pathlib import Path
@@ -38,8 +39,7 @@ packageName = "pyDummy"
packageDirectory = packageName
packageInformationFile = Path(f"{packageDirectory}/__init__.py")
# setup(**
DescribePythonPackageHostedOnGitHub(
setup(**DescribePythonPackageHostedOnGitHub(
packageName=packageName,
description="pyDummy is a test package to verify GitHub actions for Python projects.",
gitHubNamespace=gitHubNamespace,
@@ -48,5 +48,4 @@ DescribePythonPackageHostedOnGitHub(
dataFiles={
packageName: ["py.typed"]
}
)
# )
))