Phillip J. Eby wrote:
> The actual syntax I'm going to end up with is:
> 
>       entry_points = {
>           "wsgi.app_factories": [
>               "feature1 = somemodule:somefunction",
>               "feature2 = another.module:SomeClass [extra1,extra2]",
>           ]
>       }

That seems weird to put the assignment inside a string, instead of:

entry_points = {
   'wsgi.app_factories': {
     'app': 'somemodule:somefunction',
   },
}

Also, is there any default name?  Like for a package that distributes 
only one application.  Or these just different spellings for the same thing?


-- 
Ian Bicking  /  [EMAIL PROTECTED]  / http://blog.ianbicking.org
_______________________________________________
Distutils-SIG maillist  -  [email protected]
http://mail.python.org/mailman/listinfo/distutils-sig

Reply via email to