Browse Source

Use apispec fork from algoo

Guénaël Muller 6 years ago
parent
commit
6ae98b1a42
1 changed files with 4 additions and 2 deletions
  1. 4 2
      setup.py

+ 4 - 2
setup.py View File

9
 
9
 
10
 install_requires = [
10
 install_requires = [
11
     'marshmallow >2.0.0,<3.0.0a1',
11
     'marshmallow >2.0.0,<3.0.0a1',
12
-    'apispec',
12
+    'apispec==0.35.0-algoo',
13
     'multidict'
13
     'multidict'
14
 ]
14
 ]
15
 tests_require = [
15
 tests_require = [
94
     # "scripts" keyword. Entry points provide cross-platform support and allow
94
     # "scripts" keyword. Entry points provide cross-platform support and allow
95
     # pip to create the appropriate form of executable for the target platform.
95
     # pip to create the appropriate form of executable for the target platform.
96
     entry_points={},
96
     entry_points={},
97
-
98
     setup_requires=[],
97
     setup_requires=[],
98
+    dependency_links=[
99
+        'git+https://github.com/algoo/apispec.git@hapic_apispec#egg=apispec-0.35.0-algoo'
100
+    ],
99
     tests_require=tests_require,
101
     tests_require=tests_require,
100
     include_package_data=True,
102
     include_package_data=True,
101
 )
103
 )