2015-06-24 01:02:55 +02:00
|
|
|
import os
|
|
|
|
|
2021-06-03 15:20:39 +02:00
|
|
|
from setuptools import setup
|
|
|
|
|
2015-06-24 01:02:55 +02:00
|
|
|
# Change directory since setuptools uses relative paths
|
2020-12-30 14:17:50 +01:00
|
|
|
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
2014-04-05 01:08:57 +02:00
|
|
|
|
2020-12-30 14:17:50 +01:00
|
|
|
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=[
|
2021-06-11 10:27:17 +02:00
|
|
|
"mutagen>=1.31.0",
|
2021-06-11 09:44:38 +02:00
|
|
|
"pika>=1.0.0",
|
2020-12-30 14:17:50 +01:00
|
|
|
"file-magic",
|
|
|
|
"requests>=2.7.0",
|
2021-06-11 10:26:45 +02:00
|
|
|
"rgain3==1.1.0",
|
2021-07-15 10:27:23 +02:00
|
|
|
"PyGObject>=3.34.0",
|
|
|
|
# If this version is changed, it needs changing in the install script too
|
2020-12-30 14:17:50 +01:00
|
|
|
"pycairo==1.19.1",
|
|
|
|
],
|
|
|
|
zip_safe=False,
|
|
|
|
)
|