-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d4393fa
commit 1e67426
Showing
4 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from .m3u_parser import M3uParser | ||
|
||
__version__ = '0.2.0' | ||
__version__ = '0.2.1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
import sys | ||
from shutil import rmtree | ||
|
||
from setuptools import Command, find_packages, setup | ||
from setuptools import Command, setup | ||
|
||
# Package meta-data. | ||
NAME = "m3u_parser" | ||
|
@@ -12,7 +12,7 @@ | |
EMAIL = "[email protected]" | ||
AUTHOR = "Pawan Paudel" | ||
REQUIRES_PYTHON = ">=3.0" | ||
VERSION = "0.2.0" | ||
VERSION = "0.2.1" | ||
|
||
REQUIRED = ["requests", "asyncio", "aiohttp", "pycountry"] | ||
|
||
|