Try to add pyramid_formalchemy to existing app as described in http://docs.formalchemy.org/pyramid_formalchemy/ the following way:
$ pcreate -s pyramid_fa myapp
In result inside package "myapp" directory with the same name is created, it contains three files: faforms.py, fainit.py, faroutes.py. Is it bug? When I try to create new project:
$ pcreate -s alchemy -s pyramid_fa myapp
these three files locates inside in mayapp package directly.
After adding settings to __init__.main() I try to open /admin page and get an error:
AttributeError: 'module' object has no attribute 'FieldSet'
I use 1.3 Pyramid version.