esc
esc

Reputation: 455

Build entry points

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

Answers (1)

zmo
zmo

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

Related Questions