mirror of https://github.com/MISP/PyMISP
chg: Add sphinx-autodoc-typehints
parent
8bed0a8e55
commit
f560153f20
|
@ -2,6 +2,11 @@ version: 2
|
|||
|
||||
python:
|
||||
version: 3.6
|
||||
install:
|
||||
- method: pip
|
||||
path: .
|
||||
extra_requirements:
|
||||
- docs
|
||||
|
||||
build:
|
||||
image: latest
|
||||
|
|
|
@ -30,6 +30,7 @@ from recommonmark.parser import CommonMarkParser
|
|||
# ones.
|
||||
extensions = [
|
||||
'sphinx.ext.autodoc',
|
||||
'sphinx_autodoc_typehints'
|
||||
'sphinx.ext.doctest',
|
||||
'sphinx.ext.intersphinx',
|
||||
'sphinx.ext.todo',
|
||||
|
|
3
setup.py
3
setup.py
|
@ -45,7 +45,8 @@ setup(
|
|||
extras_require={'fileobjects': ['lief>=0.8', 'python-magic'],
|
||||
'neo': ['py2neo'],
|
||||
'openioc': ['beautifulsoup4'],
|
||||
'virustotal': ['validators']},
|
||||
'virustotal': ['validators'],
|
||||
'docs': ['sphinx-autodoc-typehints']},
|
||||
tests_require=[
|
||||
'jsonschema',
|
||||
'python-magic',
|
||||
|
|
Loading…
Reference in New Issue