Skip to content

Commit

Permalink
Fix wrong namespaces in pyproject
Browse files Browse the repository at this point in the history
  • Loading branch information
m-fehr committed Nov 7, 2024
1 parent 23853f8 commit 1f0a70e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish_n_pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
name: python-package-distributions
path: dist/

publish-to-pypi:
name: >-
Publish Python 🐍 distribution 📦 to PyPI
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "fdsreader"
version = "1.11.4"
version = "1.11.5"
description = "Python reader for data generated by FDS."
readme = "README.md"
requires-python = ">=3.6"
Expand All @@ -31,8 +31,8 @@ dev = [
"pytest >=6.0"
]

[tool.setuptools.packages.find]
where = ["fdsreader"]
[tool.setuptools]
packages = ["fdsreader","fdsreader.bndf","fdsreader.devc","fdsreader.evac","fdsreader.export","fdsreader.fds_classes","fdsreader.geom","fdsreader.isof","fdsreader.part","fdsreader.pl3d","fdsreader.slcf","fdsreader.smoke3d","fdsreader.utils"]

[tool.pytest.ini_options]
testpaths = ["tests"]

0 comments on commit 1f0a70e

Please sign in to comment.