Skip to content

Commit 2a7376b

Browse files
committed
chore: reformat pyproject.toml
1 parent 93ad674 commit 2a7376b

File tree

2 files changed

+32
-29
lines changed

2 files changed

+32
-29
lines changed

poetry.lock

Lines changed: 9 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,62 @@
11
[build-system]
2-
requires = ["poetry>=0.12"]
32
build-backend = "poetry.masonry.api"
3+
requires = ["poetry>=0.12"]
44

55
[tool.poetry]
6-
name = "pydantic-ssm-settings"
7-
version = "0.2.2"
8-
description = "Replace Pydantic's builtin Secret Support with a configuration provider that loads parameters from AWS Systems Manager Parameter Store."
96
authors = ["Anthony Lukach <[email protected]>"]
10-
maintainers = ["Anthony Lukach <[email protected]>"]
7+
description = "Replace Pydantic's builtin Secret Support with a configuration provider that loads parameters from AWS Systems Manager Parameter Store."
8+
homepage = ""
119
license = "MIT"
10+
maintainers = ["Anthony Lukach <[email protected]>"]
11+
name = "pydantic-ssm-settings"
1212
readme = "README.md"
13-
homepage = ""
1413
repository = "https://github.com/developmentseed/pydantic-ssm-settings/"
14+
version = "0.2.2"
1515

1616
[tool.poetry.dependencies]
17-
python = "^3.7"
1817
"boto3" = "^1.21.45"
1918
pydantic = "^1.6.2"
19+
python = "^3.7"
2020

2121
[tool.poetry.dev-dependencies]
2222
black = "^22.3.0"
23+
boto3-stubs = {extras = ["ssm"], version = "^1.21.45"}
2324
coverage = {extras = ["toml"], version = "^6.4.1"}
25+
flake9 = "^3.8.3"
2426
isort = "^5.9.3"
27+
moto = {extras = ["all"], version = "^2.2.19"}
2528
mypy = "^0.910"
26-
boto3-stubs = {extras = ["ssm"], version = "^1.21.45"}
2729
pytest = "^6.2.5"
2830
pytest-cov = "^2.12.1"
29-
moto = {extras = ["all"], version = "^2.2.19"}
30-
flake9 = "^3.8.3"
3131

3232
[tool.semantic_release]
3333
# https://python-semantic-release.readthedocs.io/en/latest/configuration.html
34-
branch = "main"
35-
version_variable = "pydantic_ssm_settings/__init__.py:__version__"
36-
version_toml = "pyproject.toml:tool.poetry.version"
34+
branch = "main"
3735
build_command = "pip install poetry && poetry build" # https://github.com/relekang/python-semantic-release/issues/222#issuecomment-709326972
38-
upload_to_pypi = true
39-
upload_to_release = true
36+
upload_to_pypi = true
37+
upload_to_release = true
38+
version_toml = "pyproject.toml:tool.poetry.version"
39+
version_variable = "pydantic_ssm_settings/__init__.py:__version__"
4040

4141
[tool.flake8]
42-
max-line-length = 90
43-
max-complexity = 14
4442
ignore = ["E203", "W503"]
43+
max-complexity = 14
44+
max-line-length = 90
4545

4646
[tool.pytest]
47-
testpaths = "tests"
4847
addopts = "-p no:hypothesispytest"
48+
testpaths = "tests"
4949

5050
[tool.isort]
51-
line_length = 90
51+
combine_as_imports = "true"
52+
force_grid_wrap = 0
53+
include_trailing_comma = "true"
5254
known_first_party = "pydantic_ssm_settings"
55+
line_length = 90
5356
multi_line_output = 3
54-
include_trailing_comma = "true"
55-
force_grid_wrap = 0
56-
combine_as_imports = "true"
5757

5858
[tool.mypy]
59-
files="pydantic_ssm_settings"
59+
files = "pydantic_ssm_settings"
6060
python_version = 3.9
6161
show_error_codes = "True"
6262

0 commit comments

Comments
 (0)