12 lines
384 B
Python
12 lines
384 B
Python
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'
|
|
)
|