Skip to content

Commit

Permalink
Merge pull request #241 from smash-transport/roch/fix_PyPI_action
Browse files Browse the repository at this point in the history
Fix PyPI action (hopefully)
  • Loading branch information
Hendrik1704 authored Jul 1, 2024
2 parents 91e595b + dc22ab5 commit 08459e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "sparkx"
Expand Down Expand Up @@ -37,5 +37,3 @@ dependencies = [
"Repository" = "https://github.com/smash-transport/sparkx"
"Bug Tracker" = "https://github.com/smash-transport/sparkx/issues"
"Documentation" = "https://smash-transport.github.io/sparkx/"


4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

setup(
name='sparkx',
packages=find_packages(where='src/sparkx'),
package_dir={'': 'sparkx'},
packages=find_packages(where='src'),
package_dir={'': 'src'},
install_requires=[
"particle==0.23.0",
"numpy>=1.23.5",
Expand Down

0 comments on commit 08459e8

Please sign in to comment.