Initial commit

This commit is contained in:
Markil3
2021-08-14 14:27:48 -06:00
commit ff13c5a575
10 changed files with 1684 additions and 0 deletions

11
setup.py Normal file
View File

@@ -0,0 +1,11 @@
from setuptools import find_packages, setuptools, setup
setup(
name='lollypopint-markil3',
packages=find_packages(include=['lollypopint']),
version='0.1.0',
description='An extension of the Lollypop Music Player that lets you search for and play music files from the command line',
long_description='file: README.md'
author='Markil3',
license='gpl-3.0'
)