Reputation: 455
I am having trouble building Python entry points.
What I enter:
$ python setup.py build
What I expect:
The entry points listed in setup.py
to be available below build
Upvotes: 0
Views: 67
Reputation: 24812
well, that's not what "build" does. The build action just prepares the package to be included as a library, not exposing the entry points. To expose the entry points, you either need to use the install action or the develop action.
If you do not want to expose your development globally, then you'll have to use either virtualenv or buildout to make it local to your development path.
Upvotes: 1