Browse Source

specify use fork of apispec

Bastien Sevajol 6 years ago
parent
commit
43e8091fd9
1 changed files with 5 additions and 1 deletions
  1. 5 1
      setup.py

+ 5 - 1
setup.py View File

@@ -11,7 +11,10 @@ install_requires = [
11 11
     # TODO: marshmallow an extension too ? see #2
12 12
     'bottle',
13 13
     'marshmallow',
14
-    'apispec',
14
+    'apispec==0.25.4-algoo',
15
+]
16
+dependency_links = [
17
+    'git+https://github.com/algoo/apispec.git@dev-algoo#egg=apispec-0.25.4-algoo'
15 18
 ]
16 19
 tests_require = [
17 20
     'pytest',
@@ -55,6 +58,7 @@ setup(
55 58
     # requirements files see:
56 59
     # https://packaging.python.org/en/latest/requirements.html
57 60
     install_requires=install_requires,
61
+    dependency_links=dependency_links,
58 62
 
59 63
     # List additional groups of dependencies here (e.g. development
60 64
     # dependencies). You can install these using the following syntax,