Commit a5b4a50e authored by Asitha Senanayake's avatar Asitha Senanayake
Browse files

Add isort as dev dependency and update pyproject.toml

parent a51947c0
Loading
Loading
Loading
Loading
+16 −2
Original line number Diff line number Diff line
# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand.
# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand.

[[package]]
name = "click"
@@ -72,6 +72,20 @@ files = [
    {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"},
]

[[package]]
name = "isort"
version = "5.13.2"
description = "A Python utility / library to sort Python imports."
optional = false
python-versions = ">=3.8.0"
files = [
    {file = "isort-5.13.2-py3-none-any.whl", hash = "sha256:8ca5e72a8d85860d5a3fa69b8745237f2939afe12dbf656afbcb47fe72d947a6"},
    {file = "isort-5.13.2.tar.gz", hash = "sha256:48fdfcb9face5d58a4f6dde2e72a1fb8dcaf8ab26f95ab49fab84c2ddefb0109"},
]

[package.extras]
colors = ["colorama (>=0.4.6)"]

[[package]]
name = "markdown-it-py"
version = "3.0.0"
@@ -392,4 +406,4 @@ files = [
[metadata]
lock-version = "2.0"
python-versions = "^3.9"
content-hash = "9bbe1f39c642424eec423e897bf43c65856541cef1f39d441271b506ac7e80ef"
content-hash = "0efd78ffc8d3ee24f28dc7120131cb17d8da35423bc8aad230d1bd706683daeb"
+5 −4
Original line number Diff line number Diff line
@@ -17,13 +17,14 @@ defusedxml = ">=0.6, <0.8"
click = ">=7.0, <9.0"
rich = ">=9.0, <14.0"

[tool.poetry.dev-dependencies]
pytest = "^7.3"
toml = "^0.10"

[tool.poetry.scripts]
ags4_cli = "python_ags4.ags4_cli:main"

[tool.poetry.group.dev.dependencies]
pytest = "^7.3"
toml = "^0.10"
isort = "^5.13.2"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"