[07:33:16] <essich> ngoldbaum: Many thanks, setuptools_scm looks much better than the other ones: Good versioning scheme (I esp. like adding the date), better documentation, support for pyproject.toml
[09:56:15] <MarkedOne> Hello I have project_name/src/project_name/__main__.py file in this file I have from util import sayA and this file is in project_name/src/project_name/util.py when I run this as python src/project_name/__main__.py it works.. When I do pip install -e . and run python -m project_name it says no module found.
[09:56:41] <MarkedOne> I have to use import like this from .utils import sayA and it works then but breaks the first way
[09:57:17] <MarkedOne> It bothers me that I have to rewrite every import.
[10:55:57] <MarkedOne> Problem solved guyz. No need to answer.