Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 8 additions & 13 deletions packages/aws-sdk-signers/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "aws_sdk_signers"
version = "0.0.2"
requires-python = ">=3.12"
authors = [
{name = "Amazon Web Services"},
Expand All @@ -26,13 +23,15 @@ classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries"
]
dynamic = ["version"]

[tool.setuptools.dynamic]
version = {attr = "aws_sdk_signers._version.__version__"}
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.setuptools]
include-package-data = false
[tool.hatch.build]
exclude = [
"tests",
]

[project.optional-dependencies]
test = [
Expand All @@ -43,10 +42,6 @@ test = [
"ruff",
]

[tool.mypy]
python_version = "3.12"
strict = true

[tool.pytest.ini_options]
asyncio_mode = "auto"
addopts = "-W error"
Expand Down
4 changes: 2 additions & 2 deletions packages/aws-sdk-signers/src/aws_sdk_signers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
such as AioHTTP, Curl, Postman, Requests, urllib3, etc."""

from __future__ import annotations
import importlib.metadata

from ._http import URI, AWSRequest, Field, Fields
from ._identity import AWSCredentialIdentity
from ._io import AsyncBytesReader
from ._version import __version__
from .signers import AsyncSigV4Signer, SigV4Signer, SigV4SigningProperties

__license__ = "Apache-2.0"
__version__ = __version__
__version__ = importlib.metadata.version("aws-sdk-signers")

__all__ = (
"AsyncBytesReader",
Expand Down
7 changes: 0 additions & 7 deletions packages/aws-sdk-signers/src/aws_sdk_signers/_version.py

This file was deleted.

1 change: 1 addition & 0 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading