mirror of
https://github.com/Mesteriis/hassio-addons-avm.git
synced 2026-01-09 06:51:03 +01:00
9 lines
186 B
Python
9 lines
186 B
Python
from setuptools import setup, find_packages
|
|
setup(
|
|
name="hgdb",
|
|
packages=find_packages(),
|
|
package_data={
|
|
'backup': ['static/*', 'static/*/*', 'static/*/*/*']
|
|
}
|
|
)
|