> Occasionally, there are situations where it’s...
# random
f
Occasionally, there are situations where it’s desirable to make an .egg file directly executable. You can do this by including an entry point such as the following:
```
setup( # other arguments here... entry_points={ 'setuptools.installation': [ 'eggsecutable = my_package.some_module:main_func', ] } ) ```