🤖 I have created a release *beep* *boop* --- ## [4.2.0](https://github.com/libretime/libretime/compare/4.1.0...4.2.0) (2024-06-22) ### Features * **legacy:** add current date macro to string block criteria ([#3013](https://github.com/libretime/libretime/issues/3013)) ([451652b](451652bc40)) * **legacy:** add filename block criteria ([#3015](https://github.com/libretime/libretime/issues/3015)) ([4642b6c](4642b6c08e)) ### Bug Fixes * pin pip version to <24.1 to allow installing pytz (celery) ([#3043](https://github.com/libretime/libretime/issues/3043)) ([646bc81](646bc81724)) * playlist allocates inaccurate time to smartblocks ([#3026](https://github.com/libretime/libretime/issues/3026)) ([2b43e51](2b43e51ed1)) ### Performance Improvements * optimize the api image health check ([#3038](https://github.com/libretime/libretime/issues/3038)) ([d99d6e1](d99d6e1a68)) * optimize the rabbitmq health check ([#3037](https://github.com/libretime/libretime/issues/3037)) ([9684214](9684214425)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
from setuptools import find_packages, setup
|
|
|
|
version = "4.2.0" # x-release-please-version
|
|
|
|
setup(
|
|
name="libretime-analyzer",
|
|
version=version,
|
|
description="Libretime Analyzer",
|
|
author="LibreTime Contributors",
|
|
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=find_packages(exclude=["*tests*", "*fixtures*"]),
|
|
entry_points={
|
|
"console_scripts": [
|
|
"libretime-analyzer=libretime_analyzer.main:cli",
|
|
]
|
|
},
|
|
python_requires=">=3.8",
|
|
install_requires=[
|
|
"mutagen>=1.45.1,<1.48",
|
|
"pika>=1.0.0,<1.4",
|
|
"requests>=2.32.2,<2.33",
|
|
"typing_extensions",
|
|
],
|
|
extras_require={
|
|
"dev": [
|
|
"distro>=1.8.0,<2",
|
|
"types-requests>=2.31.0,<3",
|
|
],
|
|
"sentry": [
|
|
"sentry-sdk>=1.15.0,<2",
|
|
],
|
|
},
|
|
zip_safe=False,
|
|
)
|