Initial Commit

This commit is contained in:
2024-05-20 19:10:57 +02:00
commit fc8d2bb57b
7 changed files with 425 additions and 0 deletions

32
setup.py Normal file
View File

@@ -0,0 +1,32 @@
from setuptools import setup, find_packages
import pathlib
HERE = pathlib.Path(__file__).parent
VERSION = '1.0.4'
PACKAGE_NAME = 'enhanced_drf_jsonapi'
LICENSE = 'MIT'
DESCRIPTION = 'Patch library for django rest framework json api'
LONG_DESCRIPTION = (HERE / "README.md").read_text(encoding='utf-8')
LONG_DESC_TYPE = "text/markdown"
INSTALL_REQUIRES = [
'djangorestframework-jsonapi~=6.0.0'
]
setup(
name=PACKAGE_NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type=LONG_DESC_TYPE,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
install_requires=INSTALL_REQUIRES,
license=LICENSE,
packages=find_packages(),
include_package_data=True
)