blob: 3cabdd85d04885bde94dc07adefac19ed4bb81b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- setup.py
+++ setup.py
@@ -35,6 +35,9 @@ Include the example data we download during packaging.
download_url = 'https://github.com/erdogant/findpeaks/archive/'+new_version+'.tar.gz',
packages=setuptools.find_packages(), # Searches throughout all dirs for files to include
include_package_data=True, # Must be true to include files depicted in MANIFEST.in
+ package_data={
+ "findpeaks": ["data/2dpeaks.zip", "data/2dpeaks_image.png"],
+ },
license_files=["LICENSE"],
classifiers=[
"Programming Language :: Python :: 3",
|