Bumps [mutagen](https://github.com/quodlibet/mutagen) from 1.42.0 to 1.45.1. - [Release notes](https://github.com/quodlibet/mutagen/releases) - [Changelog](https://github.com/quodlibet/mutagen/blob/master/NEWS) - [Commits](https://github.com/quodlibet/mutagen/compare/release-1.42.0...release-1.45.1) --- updated-dependencies: - dependency-name: mutagen dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
31 lines
727 B
Python
31 lines
727 B
Python
import os
|
|
|
|
from setuptools import setup
|
|
|
|
# Change directory since setuptools uses relative paths
|
|
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
|
|
|
setup(
|
|
name="libretime-analyzer",
|
|
version="0.1",
|
|
description="Libretime Analyzer Worker and File Importer",
|
|
url="https://libretime.org",
|
|
author="LibreTime Contributors",
|
|
license="AGPLv3",
|
|
packages=["airtime_analyzer"],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"libretime-analyzer=airtime_analyzer.cli:main",
|
|
]
|
|
},
|
|
install_requires=[
|
|
"mutagen>=1.31.0",
|
|
"pika>=1.0.0",
|
|
"file-magic",
|
|
"requests>=2.7.0",
|
|
"rgain3==1.0.0",
|
|
"pycairo==1.19.1",
|
|
],
|
|
zip_safe=False,
|
|
)
|