소스 검색

specify use fork of apispec

Bastien Sevajol 6 년 전
부모
커밋
43e8091fd9
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      setup.py

+ 5 - 1
setup.py 파일 보기

@@ -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,