-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.26 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
"""
Django-ModelAPIView
----------------
An APIView class which handles endpoints associated with its model
"""
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
from setuptools import setup
setup(
name='django_modelapiview',
version='1.4.15',
url='https://github.com/TiphaineLAURENT/Django_APIView',
license='BSD',
author='Tiphaine LAURENT',
author_email='[email protected]',
description='Two view classes to handle API endpoints',
long_description=long_description,
long_description_content_type='text/markdown',
packages=['django_modelapiview'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'Django>=3.1',
'django_routeview>=1.1.0'
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
python_requires='>=3.9'
)