Hello,<br><br>While working with setuptools [Automatic Script Creation with setuptools] module to build python package naming with "build" 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>'build_tools'</b>,<br> version='0.1.0',<br> packages = find_packages(),<br> entry_points = {<br> 'console_scripts': [<br>
'test_build = test_build:main',<br> ],<br> },<br>)<br><br>F:\mywork\<b>build_tools</b>>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 "Scripts" 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 "Scripts" directory.<br><br>Please any one suggest fix or explain me the problem.<br><br>Thanks,<br>Praveen Doddamani.<br><br><br> <br>