Skip to content
Snippets Groups Projects
Commit c71f3a2c authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[setup] Streamlining packages

parent d1b8fa96
No related branches found
No related tags found
1 merge request!194Scheduler
......@@ -24,20 +24,30 @@ django-activity-stream = >= 0.6.1
recipe = syseggrecipe
;force-sysegg = true
eggs = alabaster
appnope
Babel
colorlog
coverage
cycler
Django
django_activity_stream
django_guardian
decorator
django
django-activity-stream
django-guardian
djangorestframework
django_rest_swagger
django_jsonfield
django-rest-swagger
django-jsonfield
docopt
docutils
funcsigs
functools32
gevent
graphviz
greenlet
gnureadline
ipdb
ipython
ipython-genutils
imagesize
Jinja2
jsonschema
MarkupSafe
......@@ -46,17 +56,22 @@ eggs = alabaster
mock
numpy
oset
pathlib2
pexpect
pbr
Pillow
pickleshare
pip
psutil
ptyprocess
psycopg2
Pygments
pyparsing
python_dateutil
python-archive
python-dateutil
pytz
PyYAML
pyzmq
simplegeneric
simplejson
six
snowballstemmer
......@@ -65,10 +80,9 @@ eggs = alabaster
sphinxcontrib-httpdomain
sphinxcontrib-mscgen
sphinxcontrib-programoutput
sphinx-numfig
sphinx-rtd-theme
subprocess32
termcolor
traitlets
uwsgi
wsgiref
......
......@@ -46,7 +46,8 @@ extensions = [
'sphinx.ext.autosummary',
'sphinx.ext.doctest',
'sphinx.ext.intersphinx',
'sphinx_numfig',
'sphinx.ext.napoleon',
'sphinx.ext.viewcode',
]
# The viewcode extension appeared only on Sphinx >= 1.0.0
......@@ -57,6 +58,9 @@ if sphinx.__version__ >= "1.0":
# Always includes todos
todo_include_todos = True
# Create numbers on figures with captions
numfig = True
# If we are on OSX, the 'dvipng' path maybe different
dvipng_osx = '/opt/local/libexec/texlive/binaries/dvipng'
if os.path.exists(dvipng_osx): pngmath_dvipng = dvipng_osx
......
......@@ -64,7 +64,6 @@ extensions = [
'sphinx.ext.napoleon',
'sphinx.ext.viewcode',
'sphinx_numfig',
'sphinxcontrib.ansi',
'sphinxcontrib.programoutput',
'sphinxcontrib.httpdomain',
......@@ -74,6 +73,9 @@ extensions = [
# Always includes todos
todo_include_todos = True
# Create numbers on figures with captions
numfig = True
# Generates auto-summary automatically
autosummary_generate = True
......
......@@ -60,6 +60,9 @@ extensions = [
# Always includes todos
todo_include_todos = True
# Create numbers on figures with captions
numfig = True
# Generates auto-summary automatically
autosummary_generate = True
......
......@@ -70,6 +70,7 @@ setup(
"sphinxcontrib-programoutput",
"sphinxcontrib-ansi",
"sphinxcontrib-httpdomain",
"sphinx-rtd-theme",
"matplotlib",
],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment