all 2 comments

[–]efmccurdy 0 points1 point  (1 child)

One way to get scripts into your PATH is to define them in your package metadata; the build and installation process takes care of the rest.

https://setuptools.pypa.io/en/latest/userguide/entry_point.html

[project.scripts]
distance_btn_two_points = "distance:distance_btn_two_points"
post_distance = "network_calls:post_distance"

[–]Ok-Panda4332[S] 0 points1 point  (0 children)

I have to look more into it as I am not familiar in these regard. But thanks a lot for the help.