Moves in line in the normal way python packages are run. https://docs.python.org/3/library/__main__.html
9 lines
301 B
Python
9 lines
301 B
Python
__all__ = ["argparser", "Manager", "parse_data", "categorize_data"]
|
|
__author__ = "Luís Murta"
|
|
__version__ = "0.1"
|
|
|
|
from pfbudget.core.categories import categorize_data
|
|
from pfbudget.core.manager import Manager
|
|
from pfbudget.cli.runnable import argparser
|
|
from pfbudget.input.parsers import parse_data
|