Hello,<br><br>While working with setuptools [Automatic Script Creation with setuptools] module to build python package naming with &quot;build&quot; as prefix for package name, i found wired issue with setup.py. My setup.py code looks like below.<br>
<br>from setuptools import setup, find_packages<br><br>setup(<br>    name=<b>&#39;build_tools&#39;</b>,<br>    version=&#39;0.1.0&#39;,<br>    packages = find_packages(),<br>    entry_points = {<br>          &#39;console_scripts&#39;: [<br>
              &#39;test_build = test_build:main&#39;,<br>               ],<br>        },<br>)<br><br>F:\mywork\<b>build_tools</b>&gt;Scripts\python.exe setup.py install -vvv  [this is how i executed the setup.py from virtual python]<br>
<br>After running the above installer, as per my understanding after the successful installation of this package the console entry_points should go in to the &quot;Scripts&quot; directory.<br>The above said scenario is working fine with Linux machine when i tried the same usecase in windows machine, it is not working as expected. <br>
Entry point console script is not listing/showing under &quot;Scripts&quot; directory.<br><br>Please any one suggest fix or explain me the problem.<br><br>Thanks,<br>Praveen Doddamani.<br><br><br> <br>