Skip to content

Commit

Permalink
chore: fix pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsbarnard committed Jan 29, 2025
1 parent b406dc6 commit 936d4bc
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ vars-gridview = "vars_gridview.__main__:main"
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.metadata]
allow-direct-references = true

[tool.hatch.build.targets.wheel]
packages = ["src/vars_gridview"]

[tool.rye]
managed = true
dev-dependencies = [
Expand All @@ -38,13 +44,6 @@ dev-dependencies = [
"pyinstaller>=6.11.1",
]

[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
isort = "^5.12.0"
pre-commit = "^3.5.0"
pyinstaller = "^6.2.0"
python-semantic-release = "^8.3.0"

[tool.semantic_release]
assets = []
commit_message = "{version}\n\nAutomatically generated by python-semantic-release"
Expand All @@ -53,10 +52,10 @@ logging_use_named_masks = false
major_on_zero = true
tag_format = "v{version}"
version_toml = [
"pyproject.toml:tool.poetry.version",
"pyproject.toml:project.version",
]
version_variables = [
"vars_gridview/__init__.py:__version__",
"src/vars_gridview/__init__.py:__version__",
]

[tool.semantic_release.branches.main]
Expand Down

0 comments on commit 936d4bc

Please sign in to comment.