libretime/playout/setup.py
libretime-bot ef1b6f1f2d
chore(main): release 4.4.0 (#3145)
🤖 I have created a release *beep* *boop*
---


## [4.4.0](https://github.com/libretime/libretime/compare/4.3.0...4.4.0)
(2025-05-29)


### Features

* build and run custom nginx container
([#3155](https://github.com/libretime/libretime/issues/3155))
([658ce15](658ce15185))
* include nginx config inside libretime-nginx container
([#3157](https://github.com/libretime/libretime/issues/3157))
([659ac7a](659ac7aa77))


### Bug Fixes

* **legacy:** now macro should use station timezone
([#3143](https://github.com/libretime/libretime/issues/3143))
([c554863](c5548632e4))
* **legacy:** scheduled show length should not add track fade times
([#3144](https://github.com/libretime/libretime/issues/3144))
([5743a0f](5743a0f582))

---
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>
2025-05-29 21:16:56 +02:00

52 lines
1.6 KiB
Python

from setuptools import find_packages, setup
version = "4.4.0" # x-release-please-version
setup(
name="libretime-playout",
version=version,
description="LibreTime Playout",
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={"": ["**/*.liq", "**/*.liq.j2", "*.types"]},
entry_points={
"console_scripts": [
"libretime-playout=libretime_playout.main:cli",
"libretime-liquidsoap=libretime_playout.liquidsoap.main:cli",
"libretime-playout-notify=libretime_playout.notify.main:cli",
]
},
python_requires=">=3.8",
install_requires=[
"backports.zoneinfo>=0.2.1,<0.3;python_version<'3.9'",
"jinja2>=3.0.3,<3.2",
"kombu==4.6.11",
"lxml>=4.5.0,<6.0.0",
"mutagen>=1.45.1,<1.48",
"python-dateutil>=2.8.1,<2.10",
"requests>=2.32.2,<2.33",
"typing-extensions",
],
extras_require={
"dev": [
"distro>=1.8.0,<2",
"requests-mock>=1.10.0,<2",
"syrupy>=4.0.0,<5",
"types-backports>=0.1.3,<1",
"types-python-dateutil>=2.8.1,<3",
"types-requests>=2.31.0,<3",
],
"sentry": [
"sentry-sdk>=1.15.0,<2",
],
},
zip_safe=False,
)