-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
52 lines (48 loc) · 2 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
44
45
46
47
48
49
50
51
52
from io import open
from os import path
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='drf-json-api-utils',
version='2.0.78',
description='Utilities to reduce the boiler-plating of django-rest-framework-json-api',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/amitassaraf/drf-json-api-utils',
author='Amit Assaraf',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='setuptools development',
package_dir={'': 'src'},
packages=find_packages(where='src'),
python_requires='>=3.5',
install_requires=['django>=3.0.0', 'djangorestframework-jsonapi', 'djangorestframework', 'django-filter',
'rest-framework-generic-relations==2.1.*', 'sqlalchemy_filters', 'marshmallow==3.7.1',
'marshmallow-sqlalchemy==0.23.1', 'sqlalchemy>=1.3.19,<=1.4.43', 'recordclass', 'ujson'],
extras_require={
'dev': ['check-manifest'],
'test': ['coverage'],
'django-simple-history': ['django-simple-history'],
'rest-framework-generic-relations': ['rest-framework-generic-relations']
},
entry_points={
'console_scripts': [],
},
project_urls={
'Bug Reports': 'https://github.com/amitassaraf/drf-json-api-utils/issues',
'Source': 'https://github.com/amitassaraf/drf-json-api-utils/',
},
)