aboutsummaryrefslogtreecommitdiff
path: root/src_doit/__init__.py
diff options
context:
space:
mode:
authorbozo.kopic <bozo@kopic.xyz>2021-12-28 20:42:10 +0100
committerbozo.kopic <bozo@kopic.xyz>2021-12-28 20:42:10 +0100
commit15640b16cd5f1fb31d1ed70158b67ad5778f63ad (patch)
tree060b8e9d28d65e8bbe718bb096cfdb490016cf16 /src_doit/__init__.py
parentb0aedec7bb1eacf5967a8f086fc7740048873a58 (diff)
WIP c implementation
Diffstat (limited to 'src_doit/__init__.py')
-rw-r--r--src_doit/__init__.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/src_doit/__init__.py b/src_doit/__init__.py
index 524fa53..8c2498d 100644
--- a/src_doit/__init__.py
+++ b/src_doit/__init__.py
@@ -44,9 +44,11 @@ json_schema_repo_path = src_py_dir / 'opcut/json_schema_repo.json'
def task_clean_all():
"""Clean all"""
- return {'actions': [(common.rm_rf, [build_dir,
- ui_dir,
- json_schema_repo_path])]}
+ return {'actions': [(common.rm_rf, [
+ build_dir,
+ ui_dir,
+ json_schema_repo_path,
+ *(src_py_dir / 'opcut').glob('*-opcut-calculate*')])]}
def task_wheel():
@@ -65,7 +67,8 @@ def task_wheel():
return {'actions': [build],
'task_dep': ['ui',
- 'json_schema_repo']}
+ 'json_schema_repo',
+ 'c']}
def task_check():