Project modified to be installable, installation files added

This commit is contained in:
2026-07-28 17:28:34 +05:00
parent 7858d7a3d4
commit 12c359b973
15 changed files with 55 additions and 7 deletions
+34
View File
@@ -0,0 +1,34 @@
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="audio_splitter",
version="0.1.0",
author="Maxim Vershinin",
author_email="im@vmn.su",
description="Split audio files using a flexible tracklist",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://git.vmn.su/max/audio_splitter",
packages=find_packages(),
python_requires=">=3.8",
license="GNU General Public License v3 (GPLv3)",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
entry_points={
"console_scripts": [
"audio_splitter = audio_splitter.main:main",
],
},
)