2022-07-16 15:20:50 +02:00
|
|
|
from setuptools import find_packages, setup
|
2014-12-17 22:42:29 +01:00
|
|
|
|
2021-05-27 16:23:02 +02:00
|
|
|
setup(
|
2021-10-03 14:57:45 +02:00
|
|
|
name="libretime-playout",
|
2023-05-26 14:53:57 +02:00
|
|
|
version="3.1.0",
|
2021-09-02 14:25:50 +02:00
|
|
|
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",
|
|
|
|
},
|
2021-05-27 16:23:02 +02:00
|
|
|
license="AGPLv3",
|
2022-07-25 21:19:41 +02:00
|
|
|
packages=find_packages(exclude=["*tests*", "*fixtures*"]),
|
2022-08-10 17:33:22 +02:00
|
|
|
package_data={"": ["**/*.liq", "**/*.liq.j2", "*.types"]},
|
2021-10-18 09:44:39 +02:00
|
|
|
entry_points={
|
|
|
|
"console_scripts": [
|
2022-01-13 16:11:37 +01:00
|
|
|
"libretime-playout=libretime_playout.main:cli",
|
2022-07-16 15:20:50 +02:00
|
|
|
"libretime-liquidsoap=libretime_playout.liquidsoap.main:cli",
|
2022-01-17 10:51:32 +01:00
|
|
|
"libretime-playout-notify=libretime_playout.notify.main:cli",
|
2021-10-18 09:44:39 +02:00
|
|
|
]
|
|
|
|
},
|
2022-10-10 23:34:00 +02:00
|
|
|
python_requires=">=3.8",
|
2021-05-27 16:23:02 +02:00
|
|
|
install_requires=[
|
2022-07-17 22:59:49 +02:00
|
|
|
"backports.zoneinfo>=0.2.1,<0.3;python_version<'3.9'",
|
2022-08-10 17:33:22 +02:00
|
|
|
"jinja2>=3.0.3,<3.2",
|
2022-07-16 22:11:43 +02:00
|
|
|
"kombu==4.6.11",
|
2022-08-09 21:14:19 +02:00
|
|
|
"lxml>=4.5.0,<4.10.0",
|
2023-09-08 15:18:33 +02:00
|
|
|
"mutagen>=1.45.1,<1.48",
|
2022-08-09 14:11:55 +02:00
|
|
|
"python-dateutil>=2.8.1,<2.9",
|
2023-05-24 18:23:55 +02:00
|
|
|
"requests>=2.31.0,<2.32",
|
2022-01-18 20:59:11 +01:00
|
|
|
"typing-extensions",
|
2021-05-27 16:23:02 +02:00
|
|
|
],
|
2022-01-13 16:11:37 +01:00
|
|
|
extras_require={
|
|
|
|
"dev": [
|
2023-10-16 10:40:46 +02:00
|
|
|
"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",
|
2022-01-13 16:11:37 +01: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
|
|
|
],
|
2022-01-13 16:11:37 +01:00
|
|
|
},
|
2021-05-27 16:23:02 +02:00
|
|
|
zip_safe=False,
|
|
|
|
)
|