aboutsummaryrefslogtreecommitdiff
path: root/suites/__init__.py
blob: 138a69b9aa33bc2c4ed796523d360d34181cd030 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# ############################################################################ #
#                                                                              #
#                                                         :::      ::::::::    #
#    __init__.py                                        :+:      :+:    :+:    #
#                                                     +:+ +:+         +:+      #
#    By: charles <charles.cabergs@gmail.com>        +#+  +:+       +#+         #
#                                                 +#+#+#+#+#+   +#+            #
#    Created: 2020/07/15 18:24:48 by charles           #+#    #+#              #
#    Updated: 2020/07/15 18:24:48 by charles          ###   ########.fr        #
#                                                                              #
# ############################################################################ #

import os
import glob

modules = glob.glob(os.path.join(os.path.dirname(__file__), "*.py"))
__all__ = [os.path.basename(f)[:-3] for f in modules if os.path.isfile(f) and not f.endswith("__init__.py")]

print(__all__)