-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
43 lines (39 loc) · 1.1 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="django-rql-filter",
version="0.1.3",
author="Nicolas Joyard",
author_email="[email protected]",
description=("A RQL-enabled filter backend for django-rest-framework"),
license="MIT",
keywords="django filter drf rest rql rsql fiql",
url="https://github.com/njoyard/django-rql-filter",
packages=[
'rql_filter',
'rql_filter.parser'
],
long_description=read('README.rst'),
install_requires=[
'djangorestframework>=3,<4',
'grako>=3.12,<3.13',
],
extras_require={
'testing': [
'codecov>=2,<3',
'django-responsediff>=0.6,<0.7',
'flake8>=2,<3',
'pytest>=2,<3',
'pytest-cov>=2,<3',
'pytest-django>=2,<3',
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
],
)