Skip to content

Commit cd956e9

Browse files
committed
New Version: switch to Sphinx documentation
1 parent eb90812 commit cd956e9

10 files changed

+15
-34
lines changed

CHANGES.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
v0.0.8-prealpha, 2012-11-18 -- Error Values, Sphinx documentation
12
v0.0.7-prealpha, 2012-11-11 -- First Error measures implemented
23
v0.0.6-prealpha, 2012-11-01 -- Started implementation of error measures
34
v0.0.5-prealpha, 2012-10-20 -- Included test suite with code coverage into pycast

docs/build/latex/pycast.pdf

7.26 KB
Binary file not shown.

docs/source/common.rst

+1-7
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,5 @@ pycast.common
44
=============
55

66
.. automodule:: pycast.common.profileme
7-
:members:
8-
:special-members:
97

10-
.. automodule:: pycast.common.helper
11-
:members:
12-
:special-members:
13-
14-
.. automodule:: pycast.common.timeseries
8+
.. automodule:: pycast.common.helper

docs/source/conf.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
# The short X.Y version.
5454
version = '0.0'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '0.0.7-prealpha'
56+
release = 'v0.0.8-prealpha'
5757

5858
# The language for content autogenerated by Sphinx. Refer to documentation
5959
# for a list of supported languages.
@@ -89,8 +89,12 @@
8989
# A list of ignored prefixes for module index sorting.
9090
#modindex_common_prefix = []
9191

92-
## automatic documentation of __*__ members
93-
# autoclass_content = "both"
92+
## auto-doc adjustments
93+
#autoclass_skip_member = ["__weakref__"]
94+
#autoclass_content = "both"
95+
autodoc_member_order = "groupwise" # "bysource" # "alphabetical"
96+
autodoc_default_flags = ["members", "private-members", "special-members", "show-inheritance"] # "undoc-members" "inherited-members"
97+
9498

9599
# -- Options for HTML output ---------------------------------------------------
96100

docs/source/errors.rst

+1-7
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,7 @@ Error Measures
44
==============
55

66
.. autoclass:: pycast.errors.BaseErrorMeasure
7-
:members:
8-
:special-members:
97

108
.. autoclass:: pycast.errors.MeanSquaredError
11-
:members:
12-
:special-members:
139

14-
.. autoclass:: pycast.errors.SymmetricMeanAbsolutePercentageError
15-
:members:
16-
:special-members:
10+
.. autoclass:: pycast.errors.SymmetricMeanAbsolutePercentageError

docs/source/forecastingmethods.rst

+1-5
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,5 @@ Forecasting Methods
44
===================
55

66
.. autoclass:: pycast.methods.ExponentialSmoothing
7-
:members:
8-
:special-members:
97

10-
.. autoclass:: pycast.methods.HoltMethod
11-
:members:
12-
:special-members:
8+
.. autoclass:: pycast.methods.HoltMethod

docs/source/optimization.rst

+1-5
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,5 @@ Optimization Methods
44
====================
55

66
.. autoclass:: pycast.optimization.BaseOptimizationMethod
7-
:members:
8-
:special-members:
97

10-
.. autoclass:: pycast.optimization.GridSearch
11-
:members:
12-
:special-members:
8+
.. autoclass:: pycast.optimization.GridSearch

docs/source/smoothingmethods.rst

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,4 @@
33
Smoothing Methods
44
===================
55

6-
.. autoclass:: pycast.methods.SimpleMovingAverage
7-
:members:
8-
:special-members:
6+
.. autoclass:: pycast.methods.SimpleMovingAverage

docs/source/timeseries.rst

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,4 @@
33
TimeSeries
44
==========
55

6-
.. autoclass:: pycast.common.timeseries.TimeSeries
7-
:members:
8-
:special-members:
6+
.. autoclass:: pycast.common.timeseries.TimeSeries

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name = "pycast",
5-
version = "v0.0.7-prealpha",
5+
version = "v0.0.8-prealpha",
66
author = "Christian Schwarz",
77
author_email = "[email protected]",
88
packages = ["pycast"],

0 commit comments

Comments
 (0)