2022-04-11 18:35:28 +01:00
|
|
|
import setuptools
|
|
|
|
|
|
|
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
setuptools.setup(
|
2022-04-13 07:10:06 +01:00
|
|
|
name="vmcompact",
|
2022-04-24 12:13:22 +01:00
|
|
|
version="1.0.0",
|
2022-04-13 07:10:06 +01:00
|
|
|
author="Onyx and Iris",
|
|
|
|
author_email="code@onyxandiris.online",
|
|
|
|
description="Compact Tkinter Voicemeeter Remote App",
|
2022-04-11 18:35:28 +01:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
2022-04-13 07:10:06 +01:00
|
|
|
url="https://github.com/onyx-and-iris/voicemeeter-compact",
|
|
|
|
project_urls={
|
2022-04-11 18:35:28 +01:00
|
|
|
"Bug Tracker": "https://github.com/onyx-and-iris/voicemeeter-compact/issues"
|
|
|
|
},
|
2022-04-13 07:10:06 +01:00
|
|
|
license="MIT",
|
|
|
|
packages=["vmcompact"],
|
|
|
|
package_data={
|
|
|
|
"vmcompact": [
|
2022-04-13 15:42:50 +01:00
|
|
|
"img/*",
|
2022-04-13 07:10:06 +01:00
|
|
|
],
|
|
|
|
},
|
2022-04-11 18:35:28 +01:00
|
|
|
install_requires=[
|
2022-04-13 07:10:06 +01:00
|
|
|
"toml",
|
2022-04-24 12:05:57 +01:00
|
|
|
"sv-ttk",
|
2022-04-13 07:10:06 +01:00
|
|
|
"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",
|
2022-04-11 18:35:28 +01:00
|
|
|
],
|
|
|
|
)
|