Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: Lift context-diagrams version to >=0.6.0,<0.7 #131

Merged
merged 1 commit into from
Nov 21, 2024
Merged
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
46 changes: 16 additions & 30 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ description = "Synchronise Capella models with Polarion projects"
readme = "README.md"
requires-python = ">=3.10, <3.13"
license = { text = "Apache-2.0" }
authors = [
{ name = "DB InfraGO AG" },
]
authors = [{ name = "DB InfraGO AG" }]
keywords = []
classifiers = [
"Development Status :: 1 - Planning",
Expand All @@ -29,36 +27,26 @@ classifiers = [
]
dependencies = [
"capellambse>=0.6.6,<0.7",
"capellambse_context_diagrams>=0.5.0,<0.6",
"capellambse_context_diagrams>=0.6.0,<0.7",
"click",
"PyYAML",
"polarion-rest-api-client==1.2.2",
"bidict",
"cairosvg",
"jinja2",
"pydantic"
"pydantic",
]

[project.urls]
Homepage = "https://github.com/DSD-DBS/capella2polarion"
Documentation = "https://dsd-dbs.github.io/capella2polarion"

[project.optional-dependencies]
dev = [
"python-dotenv"
]
dev = ["python-dotenv"]

docs = [
"furo",
"sphinx",
"sphinx-copybutton",
"tomli",
]
docs = ["furo", "sphinx", "sphinx-copybutton", "tomli"]

test = [
"pytest",
"pytest-cov",
]
test = ["pytest", "pytest-cov"]

[project.scripts]
capella2polarion = "capella2polarion.__main__:cli"
Expand Down Expand Up @@ -98,23 +86,21 @@ ignore_missing_imports = true
[tool.pydocstyle]
convention = "numpy"
add-select = [
"D212", # Multi-line docstring summary should start at the first line
"D402", # First line should not be the function’s “signature”
"D417", # Missing argument descriptions in the docstring
"D212", # Multi-line docstring summary should start at the first line
"D402", # First line should not be the function’s “signature”
"D417", # Missing argument descriptions in the docstring
]
add-ignore = [
"D201", # No blank lines allowed before function docstring # auto-formatting
"D202", # No blank lines allowed after function docstring # auto-formatting
"D203", # 1 blank line required before class docstring # auto-formatting
"D204", # 1 blank line required after class docstring # auto-formatting
"D211", # No blank lines allowed before class docstring # auto-formatting
"D213", # Multi-line docstring summary should start at the second line
"D201", # No blank lines allowed before function docstring # auto-formatting
"D202", # No blank lines allowed after function docstring # auto-formatting
"D203", # 1 blank line required before class docstring # auto-formatting
"D204", # 1 blank line required after class docstring # auto-formatting
"D211", # No blank lines allowed before class docstring # auto-formatting
"D213", # Multi-line docstring summary should start at the second line
]

[tool.pylint.master]
extension-pkg-allow-list = [
"lxml.etree",
]
extension-pkg-allow-list = ["lxml.etree"]
max-line-length = 79

[tool.pylint.messages_control]
Expand Down
Loading