Feat: Start cleaning installation
This commit is contained in:
@@ -19,8 +19,6 @@ formatter = logging.Formatter('%(name)s :: %(levelname)s :: %(message)s')
|
||||
steam_handler = logging.StreamHandler()
|
||||
steam_handler.setLevel(logging.DEBUG)
|
||||
steam_handler.setFormatter(formatter)
|
||||
# création de l'objet logger qui va nous servir à écrire dans les logs
|
||||
# on met le niveau du logger à DEBUG, comme ça il écrit tout
|
||||
logger = logging.getLogger(__name__)
|
||||
logger.setLevel(logging.DEBUG)
|
||||
logger.addHandler(steam_handler)
|
||||
@@ -29,13 +27,13 @@ logger.addHandler(steam_handler)
|
||||
def setup():
|
||||
mapytex_tools = {
|
||||
"Expression": mapytex.Expression,
|
||||
"Polynom": mapytex.Polynom,
|
||||
"Fraction": mapytex.Fraction,
|
||||
"Equation": mapytex.Equation,
|
||||
"random_str": mapytex.random_str,
|
||||
"random_pythagore": mapytex.random_pythagore,
|
||||
"Dataset": mapytex.Dataset,
|
||||
"WeightedDataset": mapytex.WeightedDataset,
|
||||
# "Polynom": mapytex.Polynom,
|
||||
# "Fraction": mapytex.Fraction,
|
||||
# "Equation": mapytex.Equation,
|
||||
# "random_str": mapytex.random_str,
|
||||
# "random_pythagore": mapytex.random_pythagore,
|
||||
# "Dataset": mapytex.Dataset,
|
||||
# "WeightedDataset": mapytex.WeightedDataset,
|
||||
}
|
||||
pytex.update_export_dict(mapytex_tools)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user