-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Little bit of refactory 😄 - Each 25% progress print the drop status i…
…n logger Signed-off-by: Alessandro Maggio <[email protected]>
- Loading branch information
Showing
4 changed files
with
27 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# -*- coding: utf-8 -*- | ||
__version__ = "2.3.5" | ||
from .TwitchChannelPointsMiner import TwitchChannelPointsMiner # noqa: F401 | ||
__version__ = "2.4.1" | ||
from .TwitchChannelPointsMiner import TwitchChannelPointsMiner | ||
|
||
__all__ = [ | ||
"TwitchChannelPointsMiner", | ||
] |
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,14 +1,20 @@ | ||
import os | ||
from os import path | ||
|
||
import setuptools | ||
import re | ||
|
||
|
||
def read(fname): | ||
return open(os.path.join(os.path.dirname(__file__), fname), encoding='utf-8').read() | ||
return open(path.join(path.dirname(__file__), fname), encoding='utf-8').read() | ||
|
||
|
||
metadata = dict( | ||
re.findall(r"""__([a-z]+)__ = "([^"]+)""", read("TwitchChannelPointsMiner/__init__.py")) | ||
) | ||
|
||
setuptools.setup( | ||
name="Twitch-Channel-Points-Miner-v2", | ||
version="2.3.5", | ||
version=metadata["version"], | ||
author="Tkd-Alex (Alessandro Maggio)", | ||
author_email="[email protected]", | ||
description="A simple script that will watch a stream for you and earn the channel points.", | ||
|