mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
60 lines
1.7 KiB
Python
Executable file
60 lines
1.7 KiB
Python
Executable file
#!/usr/bin/env python
|
|
|
|
# This file is part of beets.
|
|
# Copyright 2010, Adrian Sampson.
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining
|
|
# a copy of this software and associated documentation files (the
|
|
# "Software"), to deal in the Software without restriction, including
|
|
# without limitation the rights to use, copy, modify, merge, publish,
|
|
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
# permit persons to whom the Software is furnished to do so, subject to
|
|
# the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
import os
|
|
from setuptools import setup
|
|
|
|
def _read(fn):
|
|
path = os.path.join(os.path.dirname(__file__), fn)
|
|
return open(path).read()
|
|
|
|
setup(name='beets',
|
|
version='1.0b4',
|
|
description='music tagger and library organizer',
|
|
author='Adrian Sampson',
|
|
author_email='adrian@radbox.org',
|
|
url='http://beets.radbox.org/',
|
|
license='MIT',
|
|
platforms='ALL',
|
|
long_description=_read('README'),
|
|
test_suite='test.testall.suite',
|
|
|
|
packages=[
|
|
'beets',
|
|
'beets.ui',
|
|
'beets.autotag',
|
|
'beetsplug',
|
|
'beetsplug.bpd',
|
|
],
|
|
namespace_packages=['beetsplug'],
|
|
scripts=['beet'],
|
|
|
|
install_requires=[
|
|
'mutagen',
|
|
'python-musicbrainz2 >= 0.7.0',
|
|
'munkres',
|
|
'eventlet >= 0.9.3',
|
|
],
|
|
|
|
classifiers=[
|
|
'Topic :: Multimedia :: Sound/Audio',
|
|
'Topic :: Multimedia :: Sound/Audio :: Players :: MP3',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Environment :: Console',
|
|
'Development Status :: 4 - Beta',
|
|
],
|
|
)
|
|
|