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