libretime/api/setup.py
libretime-bot 60db15e8e5
chore(main): release 4.2.0 (#3028)
🤖 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).
2024-06-22 18:16:49 +02:00

57 lines
1.7 KiB
Python

from setuptools import find_packages, setup
version = "4.2.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.3",
"django>=4.2.0,<4.3",
"djangorestframework>=3.14.0,<3.16",
"drf-spectacular>=0.22.1,<0.28",
"requests>=2.32.2,<2.33",
],
extras_require={
"prod": [
"gunicorn>=22.0.0,<22.1",
"psycopg[c]>=3.1.8,<3.2",
"uvicorn[standard]>=0.17.6,<0.31.0",
],
"dev": [
"django-coverage-plugin>=3.0.0,<4",
"django-stubs>=1.14.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",
],
},
)