mirror of
https://github.com/onyx-and-iris/voicemeeter-compact.git
synced 2024-11-24 22:00:53 +00:00
Update setup.py
package_data added to setup.py
This commit is contained in:
parent
14a43770cd
commit
488a69451f
30
setup.py
30
setup.py
@ -4,22 +4,30 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='vmcompact',
|
name="vmcompact",
|
||||||
version='0.0.1',
|
version="0.0.1",
|
||||||
author='Onyx and Iris',
|
author="Onyx and Iris",
|
||||||
author_email='code@onyxandiris.online',
|
author_email="code@onyxandiris.online",
|
||||||
description='Compact Tkinter Voicemeeter Remote App',
|
description="Compact Tkinter Voicemeeter Remote App",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
url='https://github.com/onyx-and-iris/voicemeeter-compact',
|
url="https://github.com/onyx-and-iris/voicemeeter-compact",
|
||||||
project_urls={
|
project_urls={
|
||||||
"Bug Tracker": "https://github.com/onyx-and-iris/voicemeeter-compact/issues"
|
"Bug Tracker": "https://github.com/onyx-and-iris/voicemeeter-compact/issues"
|
||||||
},
|
},
|
||||||
license='MIT',
|
license="MIT",
|
||||||
packages=['vmcompact'],
|
packages=["vmcompact"],
|
||||||
|
package_data={
|
||||||
|
"vmcompact": ["img/*"],
|
||||||
|
"vmcompact": [
|
||||||
|
"sun-valley-theme/*",
|
||||||
|
"sun-valley-theme/theme/*",
|
||||||
|
"sun-valley-theme/theme/*/*",
|
||||||
|
],
|
||||||
|
},
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'toml',
|
"toml",
|
||||||
'voicemeeter@git+https://github.com/onyx-and-iris/voicemeeter-api-python#egg=voicemeeter',
|
"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',
|
"vbancmd@git+https://github.com/onyx-and-iris/vban-cmd-python#egg=vbancmd",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user