Lines Matching full:app
30 'name': 'app',
32 'packages': ['app'],
62 'app.egg-info/PKG-INFO',
63 'app.egg-info/SOURCES.txt',
64 'app.egg-info/dependency_links.txt',
65 'app.egg-info/top_level.txt',
66 'app/__init__.py',
184 - app/
190 - app.js
191 - app.js.map
192 - app.css
193 - app.css.map
200 test_pkg = os.path.join(self.temp_dir, 'app')
208 for fname in ['app.js', 'app.js.map', 'app.css', 'app.css.map']:
244 """Include everything in app/ except the text files"""
248 include app/*
249 exclude app/*.txt
251 files = default_files | set([l('app/c.rst')])
257 self.make_manifest("include app/*.txt app/static/*")
259 l('app/a.txt'), l('app/b.txt'),
260 l('app/static/app.js'), l('app/static/app.js.map'),
261 l('app/static/app.css'), l('app/static/app.css.map')])
265 """Include the whole app/static/ directory."""
267 self.make_manifest("graft app/static")
269 l('app/static/app.js'), l('app/static/app.js.map'),
270 l('app/static/app.css'), l('app/static/app.css.map')])
274 """Include the whole app/static/ directory."""
278 l('app/static/app.js'), l('app/static/app.js.map'),
279 l('app/static/app.css'), l('app/static/app.css.map')])
287 graft app/static
291 l('app/static/app.js'), l('app/static/app.css')])
302 '.hidden.rst', 'testing.rst', l('app/c.rst'),
303 l('app/static/app.js'), l('app/static/app.css')])
307 """Include all files in app/, except for the whole app/static/ dir."""
311 graft app
312 prune app/static
315 l('app/a.txt'), l('app/b.txt'), l('app/c.rst')])