libretime/api/setup.py

56 lines
1.4 KiB
Python
Raw Normal View History

from os import chdir
from pathlib import Path
from setuptools import find_packages, setup
2020-01-30 14:47:36 +01:00
2021-09-02 14:25:50 +02:00
# Change directory since setuptools uses relative paths
here = Path(__file__).parent.resolve()
chdir(here)
2020-01-30 14:47:36 +01:00
setup(
2021-05-27 16:23:02 +02:00
name="libretime-api",
version="2.0.0a1",
2021-09-02 14:25:50 +02:00
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",
2020-01-30 14:47:36 +01:00
packages=find_packages(),
package_data={
"libretime_api": ["legacy/migrations/sql/*.sql"],
},
2020-01-30 14:47:36 +01:00
include_package_data=True,
python_requires=">=3.6",
entry_points={
"console_scripts": [
"libretime-api=libretime_api.manage:main",
]
},
2020-01-30 14:47:36 +01:00
install_requires=[
2021-05-27 16:23:02 +02:00
"coreapi",
"django~=3.0",
2021-05-27 16:23:02 +02:00
"djangorestframework",
2021-10-16 20:34:03 +02:00
"django-filter",
"drf-spectacular",
2021-05-27 16:23:02 +02:00
"markdown",
2020-01-30 14:47:36 +01:00
],
extras_require={
2021-10-01 17:49:33 +02:00
"prod": [
"psycopg2",
],
"dev": [
"django-stubs",
"djangorestframework-stubs",
"model_bakery",
"psycopg2-binary",
2022-02-23 10:23:37 +01:00
"pylint-django",
f"libretime-shared @ file://localhost/{here.parent / 'shared'}#egg=libretime_shared",
],
},
2020-01-30 14:47:36 +01:00
)