Used https://github.com/openfun/joanie as boilerplate, ran a few transformations with ChapGPT and adapted models and endpoints to fit to my current vision of the project.
8 lines
165 B
Python
8 lines
165 B
Python
#!/usr/bin/env python
|
|
"""Setup file for the people module. All configuration stands in the setup.cfg file."""
|
|
# coding: utf-8
|
|
|
|
from setuptools import setup
|
|
|
|
setup()
|