We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 688d10f commit 5740ffcCopy full SHA for 5740ffc
.github/workflows/ci.yml
@@ -21,6 +21,7 @@ jobs:
21
run: |
22
python -m pip install --upgrade pip
23
pip install .
24
+ pip install .[DL]
25
26
- name: Lint with flake8
27
setup.py
@@ -26,11 +26,14 @@
"pyyaml>=5.1",
"torch==1.4",
28
"torchvision==0.5",
29
- "detectron2 @ git+https://github.com/facebookresearch/detectron2.git@v0.1.3#egg=detectron2"
30
],
31
extras_require={
32
"GCV": ['google-cloud-vision'],
33
- "Tesseract": ['pytesseract']
+ "Tesseract": ['pytesseract'],
+ "DL": [
34
+ "pycocotools",
35
+ "detectron2 @ git+https://github.com/facebookresearch/detectron2.git@v0.1.3#egg=detectron2",
36
+ ]
37
},
38
include_package_data=True
39
)
0 commit comments