File tree Expand file tree Collapse file tree 10 files changed +23
-20
lines changed Expand file tree Collapse file tree 10 files changed +23
-20
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ version: 2
99build :
1010 os : ubuntu-20.04
1111 tools :
12- python : " 3.8 "
12+ python : " 3.9 "
1313 # You can also specify other tool versions:
1414 # nodejs: "16"
1515 # rust: "1.55"
Original file line number Diff line number Diff line change 11from ._utils .utils import *
2- from .clustering import *
3- from .data import *
4- from .density_estimation import *
5- from .id_estimation import *
2+ from .base import Base
3+ from .clustering import Clustering
4+ from .data import Data
5+ from .density_estimation import DensityEstimation
6+ from .id_estimation import IdEstimation
Original file line number Diff line number Diff line change 11The base module
2- ==========================
2+ ================================
33
4- .. automodule :: dadapy. base
4+ .. automodule :: base
55 :members:
Original file line number Diff line number Diff line change 11The clustering module
2- ==========================
2+ ================================
33
44.. automodule :: clustering
55 :members:
Original file line number Diff line number Diff line change 2424sys .path .insert (0 , os .path .abspath ("../examples" ))
2525sys .path .insert (0 , os .path .abspath ("../../examples" ))
2626
27- sys .path .insert (0 , os .path .abspath ("../../dadapy/_utils" ))
27+ # sys.path.insert(0, os.path.abspath("../../dadapy/_utils"))
2828
2929# -- Project information -----------------------------------------------------
3030
4646 "sphinx.ext.autodoc" ,
4747 "nbsphinx" ,
4848 "nbsphinx_link" ,
49- "sphinx.ext.napoleon" ]
49+ "sphinx.ext.napoleon" ,
50+ "IPython.sphinxext.ipython_console_highlighting" ]
5051
5152napoleon_custom_sections = [("Returns" , "params_style" )]
5253
Original file line number Diff line number Diff line change 11The data module
2- ==========================
2+ ================================
33
4- .. automodule :: dadapy. data
4+ .. automodule :: data
55 :members:
Original file line number Diff line number Diff line change 11The density_estimation module
2- ==============================
2+ ================================
33
4- .. automodule :: dadapy. density_estimation
4+ .. automodule :: density_estimation
55 :members:
Original file line number Diff line number Diff line change 11The id_estimation module
2- ==========================
2+ ================================
33
4- .. automodule :: dadapy. id_estimation
4+ .. automodule :: id_estimation
55 :members:
Original file line number Diff line number Diff line change 11The metric_comparisons module
2- =============================
2+ ================================
33
4- .. automodule :: dadapy.metric_comparisons
5- :members:
4+ .. automodule :: metric_comparisons
5+ :members:
6+ :undoc-members:
Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ The utils module
33
44The *utils * module contains a variety of functions useful to the different classes of the package.
55
6- .. automodule :: utils
6+ .. automodule :: _utils. utils
77 :members:
You can’t perform that action at this time.
0 commit comments