libretime/api/setup.py

33 lines
867 B
Python
Raw Normal View History

2020-01-30 14:47:36 +01:00
import os
import shutil
from setuptools import setup, find_packages
script_path = os.path.dirname(os.path.realpath(__file__))
print(script_path)
os.chdir(script_path)
setup(
2021-05-27 16:23:02 +02:00
name="libretime-api",
version="2.0.0a1",
2020-01-30 14:47:36 +01:00
packages=find_packages(),
include_package_data=True,
2021-05-27 16:23:02 +02:00
description="LibreTime API backend server",
url="https://github.com/LibreTime/libretime",
author="LibreTime Contributors",
scripts=["bin/libretime-api"],
2020-01-30 14:47:36 +01:00
install_requires=[
2021-05-27 16:23:02 +02:00
"coreapi",
"Django~=3.0",
"djangorestframework",
"django-url-filter",
"markdown",
"model_bakery",
"psycopg2",
2020-01-30 14:47:36 +01:00
],
project_urls={
2021-05-27 16:23:02 +02:00
"Bug Tracker": "https://github.com/LibreTime/libretime/issues",
"Documentation": "https://libretime.org",
"Source Code": "https://github.com/LibreTime/libretime",
2020-01-30 14:47:36 +01:00
},
)