mirror of
https://github.com/beetbox/beets.git
synced 2025-12-11 11:07:31 +01:00
This release fixes several bugs, one of which influences the test cases of beets (in particular, the MusePack bitrate calculation).
93 lines
2.8 KiB
Python
Executable file
93 lines
2.8 KiB
Python
Executable file
#!/usr/bin/env python
|
|
|
|
# This file is part of beets.
|
|
# Copyright 2013, 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
|
|
import sys
|
|
import subprocess
|
|
import shutil
|
|
from setuptools import setup
|
|
|
|
def _read(fn):
|
|
path = os.path.join(os.path.dirname(__file__), fn)
|
|
return open(path).read()
|
|
|
|
# Build manpages if we're making a source distribution tarball.
|
|
if 'sdist' in sys.argv:
|
|
# Go into the docs directory and build the manpage.
|
|
docdir = os.path.join(os.path.dirname(__file__), 'docs')
|
|
curdir = os.getcwd()
|
|
os.chdir(docdir)
|
|
try:
|
|
subprocess.check_call(['make', 'man'])
|
|
finally:
|
|
os.chdir(curdir)
|
|
|
|
# Copy resulting manpages.
|
|
mandir = os.path.join(os.path.dirname(__file__), 'man')
|
|
if os.path.exists(mandir):
|
|
shutil.rmtree(mandir)
|
|
shutil.copytree(os.path.join(docdir, '_build', 'man'), mandir)
|
|
|
|
setup(name='beets',
|
|
version='1.1.0-beta.3',
|
|
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.rst'),
|
|
test_suite='test.testall.suite',
|
|
include_package_data=True, # Install plugin resources.
|
|
|
|
packages=[
|
|
'beets',
|
|
'beets.ui',
|
|
'beets.autotag',
|
|
'beets.util',
|
|
'beetsplug',
|
|
'beetsplug.bpd',
|
|
'beetsplug.web',
|
|
'beetsplug.lastgenre',
|
|
],
|
|
namespace_packages=['beetsplug'],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'beet = beets.ui:main',
|
|
],
|
|
},
|
|
|
|
install_requires=[
|
|
'mutagen>=1.20',
|
|
'munkres',
|
|
'unidecode',
|
|
'musicbrainzngs>=0.2',
|
|
'pyyaml',
|
|
]
|
|
+ (['colorama'] if (sys.platform == 'win32') else [])
|
|
+ (['ordereddict'] if sys.version_info < (2, 7, 0) else []),
|
|
|
|
classifiers=[
|
|
'Topic :: Multimedia :: Sound/Audio',
|
|
'Topic :: Multimedia :: Sound/Audio :: Players :: MP3',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Environment :: Console',
|
|
'Environment :: Web Environment',
|
|
'Programming Language :: Python :: 2',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
],
|
|
)
|