Skip to content

Commit

Permalink
Include example files in setup file
Browse files Browse the repository at this point in the history
  • Loading branch information
krzywon committed Sep 18, 2023
1 parent 70a20f0 commit 9e01a40
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,19 @@
package_dir["sasdata.data_util"] = os.path.join("sasdata", "data_util")
packages.append("sasdata.data_util")

# sasdata.example_data
package_dir["sasdata.example_data"] = os.path.join('sasdata', 'example_data')
package_data["sasdata.example_data"] = ['1d_data/*.*',
'2d_data/*.*',
'convertible_files/*.*',
'dls_data/*.*',
'image_data/*.*',
'media/*.*',
'nr_data/*.*',
'other_files/*.*',
'sesans_data/*.*']
packages.append("sasdata.example_data")

required = ['lxml', 'h5py', 'numpy']

with open('LICENSE.TXT', encoding='utf-8') as f:
Expand Down

0 comments on commit 9e01a40

Please sign in to comment.