Skip to content

Commit

Permalink
Move assets JSON to shared location
Browse files Browse the repository at this point in the history
  • Loading branch information
bcopy committed Oct 6, 2021
1 parent 63718d7 commit 7e5c048
Show file tree
Hide file tree
Showing 5 changed files with 986 additions and 1,056 deletions.
6 changes: 4 additions & 2 deletions modules/gateway/src/main/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
name = 'microsquad-gateway',
python_requires= '>=3.4.0',
version="0.1", # version = '${VERSION}',
description="Remote control a squad of microbit via radio",
description="Remote control a squad of microbits via radio",
package_data={'microsquad': ['../../../../shared/public/assets/assets.json']},
include_package_data=True,
long_description="""A framework to orchestrate easily a squad of microbits via radio""",
url="https://github.com/bcopy/microsquad",
classifiers=[
Expand All @@ -36,6 +38,6 @@
"Topic :: Software Development",
],
keywords="IDE education programming microbit",
packages = find_packages('.')
packages = find_packages('.',['ez_setup', 'tests', 'tests.*'])
)

File renamed without changes.
Loading

0 comments on commit 7e5c048

Please sign in to comment.