aboutsummaryrefslogtreecommitdiff
path: root/src_doit
diff options
context:
space:
mode:
authorbozo.kopic <bozo@kopic.xyz>2022-03-28 00:03:31 +0200
committerbozo.kopic <bozo@kopic.xyz>2022-03-28 00:03:31 +0200
commitb8a61f60a0aa115141987f461658666ccbfd2034 (patch)
tree071d7c265be7e1ef72d1b9057c8bf443ea545e2e /src_doit
parent1d56c732965cad4c8eb06ed5638f7ecdea88f290 (diff)
rename hatter to boxhatter
Diffstat (limited to 'src_doit')
-rw-r--r--src_doit/__init__.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/src_doit/__init__.py b/src_doit/__init__.py
index 231061d..7414d36 100644
--- a/src_doit/__init__.py
+++ b/src_doit/__init__.py
@@ -18,9 +18,9 @@ src_py_dir = Path('src_py')
src_scss_dir = Path('src_scss')
schemas_json_dir = Path('schemas_json')
-ui_dir = src_py_dir / 'hatter/ui'
+ui_dir = src_py_dir / 'boxhatter/ui'
-json_schema_repo_path = src_py_dir / 'hatter/json_schema_repo.json'
+json_schema_repo_path = src_py_dir / 'boxhatter/json_schema_repo.json'
main_scss_path = src_scss_dir / 'main.scss'
main_css_path = ui_dir / 'main.css'
@@ -39,12 +39,12 @@ def task_wheel():
build_wheel(
src_dir=src_py_dir,
dst_dir=build_dir,
- name='hatter',
+ name='boxhatter',
description='Continuous integration server/executor',
- url='https://github.com/bozokopic/hatter',
+ url='https://github.com/bozokopic/boxhatter',
license=common.License.GPL3,
- packages=['hatter'],
- console_scripts=['hatter = hatter.main:main'])
+ packages=['boxhatter'],
+ console_scripts=['boxhatter = boxhatter.main:main'])
return {'actions': [build],
'task_dep': ['json_schema_repo',