forked from axnsan12/drf-yasg
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·51 lines (48 loc) · 1.69 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
if __name__ == "__main__":
setup(
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
install_requires=[
"packaging>=18.0",
"coreapi>=2.3.3",
"coreschema>=0.0.4",
"django>=2.2.0",
"djangorestframework>=3.8.0",
"inflection>=0.3.1",
"ruamel.yaml>=0.16.12",
"six>=1.15.0",
"uritemplate>=3.0.1",
],
extras_require={
"lint": ["flake8>=3.5.0"],
"format": ["autoflake>=1.4.0", "black>=20.8.0", "isort>=4.2.0"],
"dist": ["bump2version", "wheel"],
"validation": ["swagger-spec-validator>=2.1.0"],
"docs": [
"djangorestframework_camel_case>=0.2.0",
"Pillow>=4.3.0",
"readme_renderer[md]>=24.0",
"sphinx_rtd_theme>=0.2.4",
"Sphinx>=1.7.0",
"twine>=1.12.1",
],
"tests": [
"dj-database-url>=0.4.2",
"django-cors-headers>=3.0.2",
"django-filter>=1.1.0",
"django-oauth-toolkit>=1.3.2",
"djangorestframework-camel-case>=1.0.3",
"djangorestframework-recursive>=0.1.2",
"Pillow>=4.3.0",
"pytest>=4.6.11",
"pytest-django>=3.10.0",
"tox>=3.3.0",
"user_agents>=1.1.0",
],
"heroku": ["dj-database-url>=0.4.2", "gunicorn>=19.7.1", "psycopg2>=2.7.3", "whitenoise>=3.3.1",],
},
)