Skip to content

Commit c05bd0d

Browse files
authored
Update pyproject.toml
1 parent 68d92af commit c05bd0d

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

pyproject.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["hatchling"]
33
build-backend = "hatchling.build"
44

55
[project]
6-
name = "aws-durable-functions-sdk-python"
6+
name = "aws-durable-executions-sdk-python"
77
dynamic = ["version"]
88
description = 'This the Python SDK for AWS Lambda Durable Functions.'
99
readme = "README.md"
@@ -25,18 +25,18 @@ dependencies = [
2525
]
2626

2727
[project.urls]
28-
Documentation = "https://github.com/aws/aws-durable-functions-sdk-python#readme"
29-
Issues = "https://github.com/aws/aws-durable-functions-sdk-python/issues"
30-
Source = "https://github.com/aws/aws-durable-functions-sdk-python"
28+
Documentation = "https://github.com/aws/aws-durable-executions-sdk-python#readme"
29+
Issues = "https://github.com/aws/aws-durable-executions-sdk-python/issues"
30+
Source = "https://github.com/aws/aws-durable-executions-sdk-python"
3131

3232
[tool.hatch.build.targets.sdist]
33-
packages = ["src/aws_durable_functions_sdk_python"]
33+
packages = ["src/aws_durable_executions_sdk_python"]
3434

3535
[tool.hatch.build.targets.wheel]
36-
packages = ["src/aws_durable_functions_sdk_python"]
36+
packages = ["src/aws_durable_executions_sdk_python"]
3737

3838
[tool.hatch.version]
39-
path = "src/aws_durable_functions_sdk_python/__about__.py"
39+
path = "src/aws_durable_executions_sdk_python/__about__.py"
4040

4141
# [tool.hatch.envs.default]
4242
# dependencies=["pytest"]
@@ -52,27 +52,27 @@ dependencies = [
5252
]
5353

5454
[tool.hatch.envs.test.scripts]
55-
cov="pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=src/aws_durable_functions_sdk_python --cov=tests --cov-fail-under=98"
55+
cov="pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=src/aws_durable_executions_sdk_python --cov=tests --cov-fail-under=98"
5656

5757
[tool.hatch.envs.types]
5858
extra-dependencies = [
5959
"mypy>=1.0.0",
6060
"pytest"
6161
]
6262
[tool.hatch.envs.types.scripts]
63-
check = "mypy --install-types --non-interactive {args:src/aws_durable_functions_sdk_python tests}"
63+
check = "mypy --install-types --non-interactive {args:src/aws_durable_executions_sdk_python tests}"
6464

6565
[tool.coverage.run]
66-
source_pkgs = ["aws_durable_functions_sdk_python", "tests"]
66+
source_pkgs = ["aws_durable_executions_sdk_python", "tests"]
6767
branch = true
6868
parallel = true
6969
omit = [
70-
"src/aws_durable_functions_sdk_python/__about__.py",
70+
"src/aws_durable_executions_sdk_python/__about__.py",
7171
]
7272

7373
[tool.coverage.paths]
74-
aws_durable_functions_sdk_python = ["src/aws_durable_functions_sdk_python", "*/aws-durable-functions-sdk-python/src/aws_durable_functions_sdk_python"]
75-
tests = ["tests", "*/aws-durable-functions-sdk-python/tests"]
74+
aws_durable_functions_sdk_python = ["src/aws_durable_executions_sdk_python", "*/aws-durable-executions-sdk-python/src/aws_durable_executions_sdk_python"]
75+
tests = ["tests", "*/aws-durable-executions-sdk-python/tests"]
7676

7777
[tool.coverage.report]
7878
exclude_lines = [
@@ -88,4 +88,4 @@ line-length = 88
8888
preview = false
8989

9090
[tool.ruff.lint.per-file-ignores]
91-
"tests/**" = ["ARG001", "ARG002", "ARG005", "S101", "PLR2004", "SIM117", "TRY301"]
91+
"tests/**" = ["ARG001", "ARG002", "ARG005", "S101", "PLR2004", "SIM117", "TRY301"]

0 commit comments

Comments
 (0)