13 lines
328 B
Python
13 lines
328 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='BeautifyMP3',
|
|
version='1.0.0',
|
|
packages=[''],
|
|
url='https://github.com/yash2696/BeautifyMP3',
|
|
license='MIT',
|
|
author='Yash Agarwal',
|
|
author_email='yashagarwaljpr@gmail.com',
|
|
description='A tool to automatically fix MP3 file metadata and filenames.'
|
|
)
|