Skip to content

Commit

Permalink
Rename pypi project
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoGuadrini committed Sep 9, 2022
2 parents ac7652f + 1128cf1 commit 174f107
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
To install ``mkpl``, see here:

```console
$ pip install mkpl # for python enviroment
$ pip install make_playlist # for python enviroment

$ dnf copr enable matteoguadrini/mkpl
$ dnf install python-mkpl -y # for Red Hat, CentOS, Mageia and fedora
Expand Down
2 changes: 1 addition & 1 deletion __info__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

"""Information variable used by modules on this package."""

__version__ = '1.0.0'
__version__ = '1.0.1'
__author__ = 'Matteo Guadrini'
__email__ = '[email protected]'
__homepage__ = 'https://github.com/MatteoGuadrini/mkpl'
2 changes: 1 addition & 1 deletion mkpl.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
# region globals
FILE_FORMAT = {'mp1', 'mp2', 'mp3', 'mp4', 'aac', 'ogg', 'wav', 'wma',
'avi', 'xvid', 'divx', 'mpeg', 'mpg', 'mov', 'wmv'}
__version__ = '1.0.0'
__version__ = '1.0.1'


# endregion
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
long_description = fh.read()

setup(
name='mkpl',
name='make_playlist',
version=__info__.__version__,
url=__info__.__homepage__,
project_urls={
Expand All @@ -50,7 +50,8 @@
],
entry_points={
'console_scripts': [
'mkpl = mkpl:main'
'mkpl = mkpl:main',
'make_playlist = mkpl:main',
]
},
python_requires='>=3.5'
Expand Down

0 comments on commit 174f107

Please sign in to comment.