🤖 I have created a release *beep* *boop* --- ## [4.5.0](https://github.com/libretime/libretime/compare/4.4.0...4.5.0) (2025-07-16) ### Features * **legacy:** add config option for group separator in header auth ([#3181](https://github.com/libretime/libretime/issues/3181)) ([f780994](f780994996)) * **playout:** don't clear liquidsoap queue on liquidsoap startup ([#3163](https://github.com/libretime/libretime/issues/3163)) ([0b02ebf](0b02ebf1b6)) * rename `airtime-pypo` exchange to `playout` ([#3170](https://github.com/libretime/libretime/issues/3170)) ([63ff50b](63ff50b82c)) * use fanout queue type for playout queue ([#3161](https://github.com/libretime/libretime/issues/3161)) ([9e55d3b](9e55d3bb6f)) ### Bug Fixes * **playout:** invalid input source disconnect command send to liquidsoap ([#3166](https://github.com/libretime/libretime/issues/3166)) ([908d548](908d54805a)) * **playout:** remove potential deadlock in liquidsoap client ([#3165](https://github.com/libretime/libretime/issues/3165)) ([f33518d](f33518d637)) * **playout:** when metadata has a newline playout stops ([#3160](https://github.com/libretime/libretime/issues/3160)) ([d7987bb](d7987bb4ef)) * **worker:** catch mutagen `TypeError` when saving metadata ([#3182](https://github.com/libretime/libretime/issues/3182)) ([107bacf](107bacf296)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: jo <ljonas@riseup.net>
57 lines
1.7 KiB
Python
57 lines
1.7 KiB
Python
from setuptools import find_packages, setup
|
|
|
|
version = "4.5.0" # x-release-please-version
|
|
|
|
setup(
|
|
name="libretime-api",
|
|
version=version,
|
|
description="LibreTime API",
|
|
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={
|
|
"libretime_api": ["legacy/migrations/sql/*.sql"],
|
|
},
|
|
include_package_data=True,
|
|
python_requires=">=3.8",
|
|
entry_points={
|
|
"console_scripts": [
|
|
"libretime-api=libretime_api.manage:main",
|
|
]
|
|
},
|
|
install_requires=[
|
|
"django-cors-headers>=3.14.0,<4.5",
|
|
"django-filter>=2.4.0,<24.4",
|
|
"django>=4.2.0,<4.3",
|
|
"djangorestframework>=3.14.0,<3.16",
|
|
"drf-spectacular>=0.22.1,<0.29",
|
|
"requests>=2.32.2,<2.33",
|
|
],
|
|
extras_require={
|
|
"prod": [
|
|
"gunicorn>=22.0.0,<23.1",
|
|
"psycopg[c]>=3.1.8,<3.2",
|
|
"uvicorn[standard]>=0.17.6,<0.33.0",
|
|
],
|
|
"dev": [
|
|
"django-coverage-plugin>=3.0.0,<4",
|
|
"django-stubs>=5.1.0,<6",
|
|
"djangorestframework-stubs>=1.8.0,<4",
|
|
"model_bakery>=1.10.1,<2",
|
|
"psycopg[binary]>=3.1.8,<4",
|
|
"pylint-django>=2.5.3,<3",
|
|
"pytest-django>=4.5.2,<5",
|
|
"requests-mock>=1.10.0,<2",
|
|
],
|
|
"sentry": [
|
|
"sentry-sdk[django]>=1.15.0,<2",
|
|
],
|
|
},
|
|
)
|