diff --git a/setup.py b/setup.py index 31d0644..07357a2 100644 --- a/setup.py +++ b/setup.py @@ -4,22 +4,30 @@ with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() setuptools.setup( - name='vmcompact', - version='0.0.1', - author='Onyx and Iris', - author_email='code@onyxandiris.online', - description='Compact Tkinter Voicemeeter Remote App', + name="vmcompact", + version="0.0.1", + author="Onyx and Iris", + author_email="code@onyxandiris.online", + description="Compact Tkinter Voicemeeter Remote App", long_description=long_description, long_description_content_type="text/markdown", - url='https://github.com/onyx-and-iris/voicemeeter-compact', - project_urls = { + url="https://github.com/onyx-and-iris/voicemeeter-compact", + project_urls={ "Bug Tracker": "https://github.com/onyx-and-iris/voicemeeter-compact/issues" }, - license='MIT', - packages=['vmcompact'], + license="MIT", + packages=["vmcompact"], + package_data={ + "vmcompact": ["img/*"], + "vmcompact": [ + "sun-valley-theme/*", + "sun-valley-theme/theme/*", + "sun-valley-theme/theme/*/*", + ], + }, install_requires=[ - 'toml', - 'voicemeeter@git+https://github.com/onyx-and-iris/voicemeeter-api-python#egg=voicemeeter', - 'vbancmd@git+https://github.com/onyx-and-iris/vban-cmd-python#egg=vbancmd', + "toml", + "voicemeeter@git+https://github.com/onyx-and-iris/voicemeeter-api-python#egg=voicemeeter", + "vbancmd@git+https://github.com/onyx-and-iris/vban-cmd-python#egg=vbancmd", ], )