-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (33 loc) · 1.16 KB
/
setup.py
File metadata and controls
38 lines (33 loc) · 1.16 KB
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
31
32
33
34
35
36
37
38
from setuptools import setup, find_packages
setup(
name='beets-extended-metadata',
version='0.3.1',
description='beets plugin to use custom, extended metadata',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Joscha Düringer',
author_email='joscha.dueringer@beardbot.net',
url='https://github.com/calne-ca/beets-plugin-extended-metadata',
license='MIT',
platforms='ALL',
packages=find_packages(exclude=['test', 'test.*']),
install_requires=[
'beets>=1.4.9',
'mediafile>=0.9.0'
],
extras_require={
'build': ['wheel', 'twine'],
'test': ['pytest', 'mockito', 'testcontainers']
},
classifiers=[
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Sound/Audio :: Players :: MP3',
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)