python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
pip install -e doesn't allow to import via package dir
Easy script to reproduce bug in the end of the question
This was also submitted as a bug on pip's github
For a pkg structured like this:
.
├── setup.py
└── src
└── my_pkg
├── __init__.py
...

CIsForCookies
Votes: 0
Answers: 2
Python setup.py not running post installation
I have a Python project (let's call it Project A) which contains a setup.py file as following:
from setuptools import setup
from setuptools import find_namespace_packages
from setuptools.command.devel...
Marcos Paulo Júnior
Votes: 0
Answers: 0
How to package my python project to be runnable from command line?
I've coded my python project and have succeeded in publishing it to test pypi. However, now I can't figure out how to correctly configure it as a console script. Upon running my_project on the command...

ThatCoolCoder
Votes: 0
Answers: 2
set python submodule name in setup.py
I have a Python package with this structure:
folder/
__init__.py
subfolder_a/
__init__.py
module_1.py
module_2.py
subfolder_b/
__init__.py
setup.py
My setu...
solopiu
Votes: 0
Answers: 0