Coverage for .nox/test-3-9/lib/python3.9/site-packages/nskit/recipes/python/ingredients/recipe/__init__.py: 0%

6 statements  

« prev     ^ index     » next       coverage.py v7.4.2, created at 2024-02-25 17:38 +0000

1"""Ingredients for a recipe recipe.""" 

2from nskit.mixer import File 

3from nskit.recipes.python.ingredients import src_dir as _src_dir 

4 

5pyproject_toml = File( 

6 name='pyproject.toml', 

7 content='nskit.recipes.python.ingredients.recipe:pyproject.toml.template' 

8 ) 

9 

10readme_md = File( 

11 name='README.md', 

12 content='nskit.recipes.python.ingredients.recipe:readme.md.template' 

13 ) 

14 

15 

16src_dir = _src_dir.model_copy(deep=True) 

17src_dir['src_path'].contents += [ 

18 File( 

19 name='recipe.py', 

20 content='nskit.recipes.python.ingredients.recipe:recipe.py.template' 

21 ), 

22 File( 

23 name='ingredient.py.template', 

24 content='nskit.recipes.python.ingredients.recipe:ingredient.py.template.template' 

25 ) 

26]