Lukasz Szybalski wrote: > so I created something like this... I want to track testfile.py > > myapp/ > |-- __init__.py > |-- __init__.pyc > |-- myapp > | |-- __init__.py > | |-- __init__.pyc > | `-- templates > | |-- __init__.py > | `-- testfile.py_tmpl > > > and was hoping to get: > > mynewapp > | |-- __init__.py > | |-- __init__.pyc > | `-- templates > | |-- __init__.py > | `-- testfile.py_tmpl > but I got > maa2 > |-- __init__.py > |-- maa2 > | `-- __init__.py > |-- maa2.egg-info > | |-- PKG-INFO > | |-- SOURCES.txt > | |-- dependency_links.txt > | |-- entry_points.txt > | |-- not-zip-safe > | |-- paster_plugins.txt > | `-- top_level.txt > |-- setup.cfg > |-- setup.py > `-- testfile.py > > > How should I setup these folders to make the whole paste template > work. Where Do I put my code?
It looks like you inherited from basic_package, which creates setup.py etc. If you don't want these files you should not reference basic_package. -- Ian Bicking : [EMAIL PROTECTED] : http://blog.ianbicking.org _______________________________________________ Paste-users mailing list [email protected] http://webwareforpython.org/cgi-bin/mailman/listinfo/paste-users
