-
Notifications
You must be signed in to change notification settings - Fork 7
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
Showing
2 changed files
with
45 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -124,6 +124,5 @@ dmypy.json | |
# Pyre type checker | ||
.pyre/ | ||
*.txt | ||
setup.py | ||
MANIFEST.in | ||
*.jpg |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# rm -rf ./dist | ||
# python3 setup.py sdist bdist_wheel | ||
# python3 -m twine upload --repository pypi dist/* | ||
# | ||
# to test locally: | ||
# python setup.py develop | ||
# | ||
# more info here: | ||
# https://packaging.python.org/tutorials/packaging-projects/#uploading-your-project-to-pypi | ||
|
||
import setuptools | ||
|
||
setuptools.setup(name = 'get_cover_art', | ||
version = '1.4.11', | ||
python_requires='>=3.5', | ||
author = 'Rego Sen', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/regosen/get_cover_art', | ||
description = 'Batch cover art downloader and embedder for audio files', | ||
long_description = open("README.md","r").read(), | ||
long_description_content_type = "text/markdown", | ||
license = 'MIT', | ||
keywords = 'cover album art artwork embed itunes apple music mp3 id3 m4a mp4 aac xmp flac ogg vorbis opus songs', | ||
packages=setuptools.find_packages(), | ||
install_requires=[ | ||
'mutagen', | ||
], | ||
classifiers = [ | ||
'Development Status :: 4 - Beta', | ||
'Environment :: Console', | ||
'Intended Audience :: End Users/Desktop', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Topic :: Internet', | ||
'Topic :: Multimedia :: Graphics', | ||
'Topic :: Multimedia :: Sound/Audio', | ||
], | ||
entry_points = { | ||
'console_scripts': [ | ||
'get_cover_art = get_cover_art.__main__:main', | ||
] | ||
}, | ||
) |