fellshard
12/08/2016, 12:38 AMOccasionally, 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', ] } ) ```