Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
JimEverest committed Oct 5, 2024
1 parent ef23d49 commit 9ae89e0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
6 changes: 1 addition & 5 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,4 @@ include fastshot/resources/close_icon.png
include fastshot/resources/minimize_icon.png
include fastshot/resources/title_icon.png
include fastshot/env.bat

recursive-include web/templates *.html
recursive-include web/static/css *.css
recursive-include web/static/js *.js
recursive-include web/static/images *.png *.jpg *.jpeg *.gif
recursive-include fastshot/web *
15 changes: 8 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='fastshot',
version='1.1.2',
version='1.1.3',
packages=find_packages(),
include_package_data=True,
install_requires=[
Expand All @@ -21,12 +21,13 @@
"configparser"
],
package_data={
'fastshot': ['config.ini', '_config_reset.ini'],
'web': [
'templates/*.html',
'static/css/*.css',
'static/js/*.js',
'static/images/*.png',
'fastshot': [
'config.ini',
'_config_reset.ini',
'web/templates/*.html',
'web/static/css/*.css',
'web/static/js/*.js',
'web/static/images/*.png',
],
},
entry_points={
Expand Down

0 comments on commit 9ae89e0

Please sign in to comment.