* Add pyproject.toml * Remove pylint/flake8 linting configuration * Add ruff configuration * Multiple code refactor * Add prints when watch option is enable
12 lines
142 B
Python
12 lines
142 B
Python
#! python3
|
|
|
|
from umake.umake import make, Config
|
|
|
|
|
|
def main():
|
|
config = Config()
|
|
make(config)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|