Skip to content

Commit

Permalink
setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
DevER-M committed Oct 16, 2024
1 parent 4af1364 commit a20517b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from setuptools import setup, find_packages

classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'Operating System :: OS Independent',
'License :: OSI Approved :: GPL License',
'Programming Language :: Python :: 3'
]

setup(
name='yami-music-player',
version='1.0.0',
description="An open-source music player with simple UI" ,
long_description=open('README.md').read() + '\n\n' + open('CHANGELOG.md').read(),
long_description_content_type="text/markdown",
url='https://github.com/DevER-M/yami',
author='Mithun',
author_email='[email protected]',
license='GPL',
classifiers=classifiers,
keywords=['tkinter','youtube-music-player','spotdl','online-music-player','customtkinter','youtube-dl'],
packages=find_packages(),
)

0 comments on commit a20517b

Please sign in to comment.