Skip to content

Commit

Permalink
fix package paths (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
LegrandNico authored Sep 7, 2023
1 parent 9b99e5d commit 868a13f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include pyhgf/data/usdchf.txt
include pyhgf/data/binary_input.txt
include pyhgf/data/binary_response.txt
include src/pyhgf/data/usdchf.txt
include src/pyhgf/data/binary_input.txt
include src/pyhgf/data/binary_response.txt
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ def get_version(rel_path):
include_package_data=True,
package_dir = {"": "src"},
package_data={"": ["pyhgf/src/pyhgf/data/*.dat"]},
packages=find_packages(),
packages=find_packages(where='src'),
)

0 comments on commit 868a13f

Please sign in to comment.