Migrates from poetry to uv for dependency management. This change includes: - Removal of the old .flake8 and pyproject.toml - Addition of a new pyproject.toml - Addition of a main.py file to run the app - Addition of a makefile for automation - Updates pre-commit hooks to the latest versions. - Introduction of uv.lock
7 lines
93 B
Python
7 lines
93 B
Python
def main():
|
|
print("Hello from django-template!")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|