mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-01-23 08:40:21 +01:00
strip path from glob
This commit is contained in:
parent
4e99a3ad07
commit
f4106ee427
2
setup.py
2
setup.py
|
|
@ -7,7 +7,7 @@ setup(
|
|||
version=str(strictversion),
|
||||
packages=find_namespace_packages(include=["owrx", "csdr", "htdocs"]),
|
||||
package_data={
|
||||
"htdocs": glob("htdocs/**/*", recursive=True)
|
||||
"htdocs": [f[len("htdocs/"):] for f in glob("htdocs/**/*", recursive=True)]
|
||||
},
|
||||
entry_points={"console_scripts": ["openwebrx=owrx.__main__:main"]},
|
||||
# use the github page for now
|
||||
|
|
|
|||
Loading…
Reference in a new issue