-
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.
Add get_name and get_version methods
- Loading branch information
1 parent
4f4c757
commit 5330e90
Showing
2 changed files
with
15 additions
and
2 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 |
---|---|---|
|
@@ -3,15 +3,15 @@ | |
setup( | ||
name = 'livepng', | ||
packages = ['livepng'], | ||
version = '0.1.5', | ||
version = '0.1.6', | ||
license='GGPLv3', | ||
description = 'LivePNG is a format to create avatars based on PNG images with lipsync support', | ||
long_description=open('README.md').read(), | ||
long_description_content_type='text/markdown', | ||
author = 'Francesco Caracciolo', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/francescocaracciolo/livepng', | ||
download_url = 'https://github.com/FrancescoCaracciolo/LivePNG/archive/refs/tags/0.1.5.tar.gz', | ||
download_url = 'https://github.com/FrancescoCaracciolo/LivePNG/archive/refs/tags/0.1.6.tar.gz', | ||
keywords = ['avatar', 'png', 'lipsync', 'livepng', 'anime'], | ||
install_requires=[ | ||
'pydub', | ||
|