X-Git-Url: https://git.kaliko.me/?a=blobdiff_plain;f=setup.py;h=5287da06d599fca93a3a2d83b26be07a4f997d6a;hb=00efe9ba9a9b93a0e1da0f9ee6e9ed8db4b05ccc;hp=c39047d717bc883e19d3571f76fd3eef94c10c93;hpb=73c2bfe4b8a14e35d834d9b8bc1cff33840d9273;p=mpd-sima.git diff --git a/setup.py b/setup.py index c39047d..5287da0 100755 --- a/setup.py +++ b/setup.py @@ -29,20 +29,23 @@ classifiers = [ "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", ] setup(name='MPD_sima', version=VERSION, download_url='http://media.kaliko.me/src/sima/releases/', - url='http://kaliko.me/code/mpd-sima', + url='https://kaliko.me/mpd-sima', description='Automagically add titles to MPD playlist', author=AUTHOR, - author_email= EMAIL, + author_email=EMAIL, license='GPLv3', keywords='MPD', long_description=DESCRIPTION, classifiers=classifiers, - install_requires=['python-musicpd>=0.4.1', 'requests>= 2.0.2'], + install_requires=['python-musicpd>=0.4.1', 'requests>= 2.4.0'], packages=find_packages(exclude=["tests"]), include_package_data=True, data_files=data_files, @@ -50,8 +53,8 @@ setup(name='MPD_sima', entry_points={ 'console_scripts': ['mpd-sima = sima.launch:main',] }, - test_suite="tests", -) + test_suite="tests", + ) # VIM MODLINE # vim: ai ts=4 sw=4 sts=4 expandtab