From 83d0598d8473821d6ca43aba8135774ca655b375 Mon Sep 17 00:00:00 2001 From: onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com> Date: Thu, 16 Jun 2022 23:53:50 +0100 Subject: [PATCH] Delete setup.py --- setup.py | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 setup.py diff --git a/setup.py b/setup.py deleted file mode 100644 index 4360aef..0000000 --- a/setup.py +++ /dev/null @@ -1,31 +0,0 @@ -import setuptools - -with open("README.md", "r", encoding="utf-8") as fh: - long_description = fh.read() - -setuptools.setup( - name="vmcompact", - version="1.2.6", - 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", - ], -)