diff --git a/eoapi/__init__.py b/eoapi/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/pyproject.toml b/pyproject.toml index 5b4de60..98644a2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [build-system] -build-backend = "pdm.pep517.api" -requires = ["pdm-pep517"] +requires = ["pdm-backend"] +build-backend = "pdm.backend" [tool.pdm.version] path = "eoapi/auth_utils/__init__.py" @@ -22,7 +22,7 @@ dependencies = [ description = "Authentication & authorization helpers for eoAPI" dynamic = ["version"] license = {file = "LICENSE"} -name = "eoapi.auth_utils" +name = "eoapi-auth-utils" readme = "README.md" requires-python = ">=3.8" @@ -36,3 +36,9 @@ testing = [ "jwcrypto>=1.5.6", "pytest>=6.0", ] + +[tool.mypy] +no_implicit_optional = true +strict_optional = true +namespace_packages = true +explicit_package_bases = true