Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
beat.web
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
54
Issues
54
List
Boards
Labels
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
beat
beat.web
Commits
c71f3a2c
Commit
c71f3a2c
authored
Apr 23, 2016
by
André Anjos
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[setup] Streamlining packages
parent
d1b8fa96
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
35 additions
and
11 deletions
+35
-11
buildout.cfg
buildout.cfg
+23
-9
doc/admin/conf.py
doc/admin/conf.py
+5
-1
doc/api/conf.py
doc/api/conf.py
+3
-1
doc/user/conf.py
doc/user/conf.py
+3
-0
setup.py
setup.py
+1
-0
No files found.
buildout.cfg
View file @
c71f3a2c
...
@@ -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
...
...
doc/admin/conf.py
View file @
c71f3a2c
...
@@ -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
...
...
doc/api/conf.py
View file @
c71f3a2c
...
@@ -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
...
...
doc/user/conf.py
View file @
c71f3a2c
...
@@ -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
...
...
setup.py
View file @
c71f3a2c
...
@@ -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"
,
],
],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment