Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeltryby committed Apr 25, 2024
1 parent b9ab8ce commit 910cfdd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r build-requirements.txt
- name: Build distribution
run: python -m build
- uses: actions/upload-artifact@v4
with:
path: swmm-parse/dist/swmm_parse*.*
path: ./dist/*.*
2 changes: 0 additions & 2 deletions build-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@


build
setuptools
wheel
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,15 @@ dependencies = [
]
dynamic = ["version"]

[tool.setuptools]
include-package-data = true

[tool.setuptools.packages.find]
where = ["src/"]
include = ["swmm.parse"]
include = [
"swmm.parse",
"swmm.parse.grammars",
]


[tool.setuptools.package-data]
Expand Down

0 comments on commit 910cfdd

Please sign in to comment.