I am trying to publish my first pip package, but this isn't very easy. I have the following file structure for my project:
src
main.py
about.py
__init__.py
LICENSE
pyproject.toml
README.md
setup.cfg
How would I go about starting the main.py
-file using a console script, defined in setup.cfg
?
The main.py
-file doesn't have a main function. about.py
is an extra part of my code to show a simple about screen.