Skip to content

Commit

Permalink
add data files to source distirbution
Browse files Browse the repository at this point in the history
for this required MANIFEST.in file
  • Loading branch information
lavakyan committed May 14, 2021
1 parent 7e1694f commit 61efd06
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
20 changes: 20 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@



# Include the README
include *.md

# Include the license file
include LICENSE

# Include setup.py
include setup.py

# Include the data files
include mstm_studio/images/*.png
include mstm_studio/nk/eta*.txt





2 changes: 1 addition & 1 deletion mstm_studio/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.2'
__version__ = '1.0.3'
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
package = 'mstm_studio'
version = __import__(package).__version__

package_data = {'mstm_studio' : ['images/*16.png', 'images/splash.png',
'nk/eta*.txt']}
package_data = {'mstm_studio' : ['images/*.png', 'nk/eta*.txt']}

setuptools.setup(
name=package,
Expand Down

0 comments on commit 61efd06

Please sign in to comment.