libretime/python_apps/airtime_analyzer/setup.py

38 lines
1.0 KiB
Python
Raw Normal View History

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",
2021-09-02 14:25:50 +02:00
description="Libretime Analyzer",
author="LibreTime Contributors",
2021-09-02 14:25:50 +02:00
url="https://github.com/libretime/libretime",
project_urls={
"Bug Tracker": "https://github.com/libretime/libretime/issues",
"Documentation": "https://libretime.org",
"Source Code": "https://github.com/libretime/libretime",
},
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.1.0",
"PyGObject>=3.34.0",
# If this version is changed, it needs changing in the install script too
"pycairo==1.19.1",
],
zip_safe=False,
)