-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (26 loc) · 836 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-itunesimport',
version='0.1.0.dev0', # TODO
description='', # TODO
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Kai Hollberg',
author_email='kai.hollberg@gmail.com',
url='https://github.com/Schweinepriester/beets-itunesimport',
license='MIT',
platforms='WIN', # TODO
packages=['beetsplug'],
python_requires='>=3.7',
install_requires=[
'beets>=1.4.9',
],
classifiers=[
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Sound/Audio :: Players :: MP3',
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Environment :: Web Environment',
'Programming Language :: Python :: 3',
],
)