2022-07-25 21:19:41 +02:00
|
|
|
from setuptools import find_packages, setup
|
2021-06-03 15:20:39 +02:00
|
|
|
|
2020-12-30 14:17:50 +01:00
|
|
|
setup(
|
|
|
|
name="libretime-analyzer",
|
2023-10-16 21:26:59 +02:00
|
|
|
version="3.2.0",
|
2021-09-02 14:25:50 +02:00
|
|
|
description="Libretime Analyzer",
|
2020-12-30 14:17:50 +01:00
|
|
|
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",
|
|
|
|
},
|
2020-12-30 14:17:50 +01:00
|
|
|
license="AGPLv3",
|
2022-07-25 21:19:41 +02:00
|
|
|
packages=find_packages(exclude=["*tests*", "*fixtures*"]),
|
2020-12-30 14:17:50 +01:00
|
|
|
entry_points={
|
|
|
|
"console_scripts": [
|
2022-01-17 09:26:30 +01:00
|
|
|
"libretime-analyzer=libretime_analyzer.main:cli",
|
2020-12-30 14:17:50 +01:00
|
|
|
]
|
|
|
|
},
|
2022-10-10 23:34:00 +02:00
|
|
|
python_requires=">=3.8",
|
2020-12-30 14:17:50 +01:00
|
|
|
install_requires=[
|
2023-09-08 15:18:33 +02:00
|
|
|
"mutagen>=1.45.1,<1.48",
|
2022-07-16 22:17:36 +02:00
|
|
|
"pika>=1.0.0,<1.4",
|
2023-05-24 18:23:55 +02:00
|
|
|
"requests>=2.31.0,<2.32",
|
2022-01-28 06:09:19 +01:00
|
|
|
"typing_extensions",
|
2020-12-30 14:17:50 +01:00
|
|
|
],
|
2021-09-10 13:45:27 +02:00
|
|
|
extras_require={
|
|
|
|
"dev": [
|
2023-10-16 10:40:46 +02:00
|
|
|
"distro>=1.8.0,<2",
|
|
|
|
"types-requests>=2.31.0,<3",
|
2021-09-10 13:45:27 +02:00
|
|
|
],
|
2023-02-26 23:24:29 +01:00
|
|
|
"sentry": [
|
2023-10-16 10:40:46 +02:00
|
|
|
"sentry-sdk>=1.15.0,<2",
|
2023-02-26 23:24:29 +01:00
|
|
|
],
|
2021-09-10 13:45:27 +02:00
|
|
|
},
|
2020-12-30 14:17:50 +01:00
|
|
|
zip_safe=False,
|
|
|
|
)
|