35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
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",
|
|
],
|
|
},
|
|
)
|