-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
31 lines (25 loc) · 815 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup
setup(
name='beets-yapl',
version='0.1.2',
description='beets plugin to handle yaml playlists',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Nicholas Boyd Isacsson',
author_email='[email protected]',
url='http://www.github.com/nichobi/beets-yapl',
license='GPL3',
platforms='ALL',
test_suite='test',
packages=['beetsplug'],
install_requires=[
'beets>=1.4.7',
],
classifiers=[
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Sound/Audio :: Players :: MP3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Environment :: Console',
'Programming Language :: Python :: 3',
],
)