71f2e1a74e
- remove dependency on argparse - it's a part of all supported pythons in the ports tree - do not use easy_install for installation and convert to auto-generated packing list - add staging support - unmute docs installation command - remove inclusion of devel/py-virtualenv/files/py3k-fix-pkg-plist.inc - it's implemented in bsd.python.mk - add slash to pkg-descr:WWW - bump PORTREVISION because of package change and dependency list change Approved by: nivit (maintainer, explicitly for such changes in his ports)
8 lines
404 B
Text
8 lines
404 B
Text
Python makes loading code dynamically easy, allowing you to configure
|
|
and extend your application by discovering and loading extensions
|
|
("plugins") at runtime. Many applications implement their own library
|
|
for doing this, using __import__ or importlib. Stevedore avoids
|
|
creating yet another extension mechanism by building on top of setuptools
|
|
entry points.
|
|
|
|
WWW: https://github.com/dreamhost/stevedore/
|