Updates the readme as well as a few config files.

This commit is contained in:
Markil3
2021-08-14 14:58:44 -06:00
parent ff13c5a575
commit 2d13980d98
4 changed files with 23 additions and 11 deletions

View File

@@ -1,11 +1,17 @@
import os
from setuptools import find_packages, setuptools, setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='lollypopint-markil3',
name='lollypopint',
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'
long_description=read('README.md'),
long_description_content_type='text/markdown',
author='Markil3',
license='gpl-3.0'
license='gpl-3.0',
url='https://github.com/Markil3/LollypopInt'
)