umake/make.py
Corentin 933dea2b9e
Modernize code
* Add pyproject.toml
* Remove pylint/flake8 linting configuration
* Add ruff configuration
* Multiple code refactor
* Add prints when watch option is enable
2026-07-23 15:32:40 +09:00

12 lines
142 B
Python

#! python3
from umake.umake import make, Config
def main():
config = Config()
make(config)
if __name__ == '__main__':
main()