voicemeeter-compact/setup.py
onyx-and-iris d8a240652d Update setup.py
major version bump due to changes to theme
2022-04-24 12:13:22 +01:00

32 lines
939 B
Python

import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="vmcompact",
version="1.0.0",
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={
"Bug Tracker": "https://github.com/onyx-and-iris/voicemeeter-compact/issues"
},
license="MIT",
packages=["vmcompact"],
package_data={
"vmcompact": [
"img/*",
],
},
install_requires=[
"toml",
"sv-ttk",
"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",
],
)