-
-
Notifications
You must be signed in to change notification settings - Fork 185
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
4f51394
commit d421366
Showing
5 changed files
with
11 additions
and
7 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
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 |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
"name": "TikTokLive", | ||
"license": "MIT", | ||
"author": "Isaac Kogan", | ||
"version": "6.1.2", | ||
"version": "6.1.3", | ||
"email": "[email protected]" | ||
} |
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,11 +1,15 @@ | ||
import json | ||
|
||
import setuptools | ||
|
||
# PyPi upload Command | ||
# rm -r dist ; python setup.py sdist ; python -m twine upload dist/* | ||
|
||
manifest: dict = json.loads(open("manifest.json", "r").read()) | ||
manifest: dict = { | ||
"name": "TikTokLive", | ||
"license": "MIT", | ||
"author": "Isaac Kogan", | ||
"version": "6.1.3", | ||
"email": "[email protected]" | ||
} | ||
|
||
if __name__ == '__main__': | ||
with open("README.md", "r", encoding="utf-8") as fh: | ||
|