🤖 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).
33 lines
954 B
Python
33 lines
954 B
Python
from setuptools import find_packages, setup
|
|
|
|
version = "4.2.0" # x-release-please-version
|
|
|
|
setup(
|
|
name="libretime-api-client",
|
|
version=version,
|
|
description="LibreTime API Client",
|
|
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*"]),
|
|
package_data={"": ["py.typed"]},
|
|
python_requires=">=3.8",
|
|
install_requires=[
|
|
"python-dateutil>=2.8.1,<2.10",
|
|
"requests>=2.32.2,<2.33",
|
|
],
|
|
extras_require={
|
|
"dev": [
|
|
"requests-mock>=1.10.0,<2",
|
|
"types-python-dateutil>=2.8.1,<3",
|
|
"types-requests>=2.31.0,<3",
|
|
],
|
|
},
|
|
zip_safe=False,
|
|
)
|