Browse Source

Add of __init__.py files

v0.1
Benoit GAUZERE 7 years ago
parent
commit
595e09c64b
4 changed files with 55 additions and 11 deletions
  1. +4
    -11
      pygraph/__init__.py
  2. +17
    -0
      pygraph/c_ext/__init__.py
  3. +17
    -0
      pygraph/ged/__init__.py
  4. +17
    -0
      pygraph/utils/__init__.py

+ 4
- 11
pygraph/__init__.py View File

@@ -1,5 +1,4 @@
# -*-coding:utf-8 -*- # -*-coding:utf-8 -*-

""" """
Pygraph Pygraph


@@ -9,20 +8,14 @@ This package contains 4 sub packages :
* kernels : computation of graph kernels, ie graph similarity measure compatible with SVM * kernels : computation of graph kernels, ie graph similarity measure compatible with SVM
* notebooks : examples of code using this library * notebooks : examples of code using this library
* utils : Diverse computation on graphs * utils : Diverse computation on graphs
je vous passe le blabla
""" """

# info # info
__version__ = "0.1" __version__ = "0.1"
__author__ = "Benoit Gaüzère" __author__ = "Benoit Gaüzère"
__date__ = "November 2017" __date__ = "November 2017"
# import sub modules # import sub modules
from c_ext import lsape_binders
from ged import bipartiteGED
from ged import costfunctions
from ged import GED
from utils import graphfiles
from utils import utils
from pygraph import c_ext
from pygraph import ged
from pygraph import utils

+ 17
- 0
pygraph/c_ext/__init__.py View File

@@ -0,0 +1,17 @@
# -*-coding:utf-8 -*-
"""Pygraph - c_ext module

This package binds some C++ code to python

lsape_binders.py : binders to C++ code of LSAPE methods implemented in
https://bougleux.users.greyc.fr/lsape/

"""

# info
__version__ = "0.1"
__author__ = "Benoit Gaüzère"
__date__ = "November 2017"

# import sub modules
from pygraph.c_ext import lsape_binders

+ 17
- 0
pygraph/ged/__init__.py View File

@@ -0,0 +1,17 @@
# -*-coding:utf-8 -*-
"""Pygraph - ged module

Implement some methods to compute ged between graphs


"""

# info
__version__ = "0.1"
__author__ = "Benoit Gaüzère"
__date__ = "November 2017"

from pygraph.ged import costfunctions
from pygraph.ged import bipartiteGED
from pygraph.ged import GED


+ 17
- 0
pygraph/utils/__init__.py View File

@@ -0,0 +1,17 @@
# -*-coding:utf-8 -*-
"""Pygraph - utils module

Implement some methods to manage graphs
graphfiles.py : load .gxl and .ct files
utils.py : compute some properties on networkX graphs


"""

# info
__version__ = "0.1"
__author__ = "Benoit Gaüzère"
__date__ = "November 2017"

from pygraph.utils import graphfiles
from pygraph.utils import utils

Loading…
Cancel
Save