Skip to content

Commit

Permalink
include setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
regosen committed Nov 5, 2021
1 parent eae5d8f commit 6514500
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,5 @@ dmypy.json
# Pyre type checker
.pyre/
*.txt
setup.py
MANIFEST.in
*.jpg
45 changes: 45 additions & 0 deletions setup.py
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',
]
},
)

0 comments on commit 6514500

Please sign in to comment.