Skip to content

Commit 2f2f7bb

Browse files
authored
Merge pull request #50 from aCLImatise/rename-aclimatise
Rename acclimatise to aclimatise
2 parents 6117ead + 76fd89a commit 2f2f7bb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+106
-103
lines changed
Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@
77
import psutil
88
from pyparsing import ParseBaseException
99

10-
from acclimatise.converter import WrapperGenerator
11-
from acclimatise.converter.cwl import CwlGenerator
12-
from acclimatise.converter.wdl import WdlGenerator
13-
from acclimatise.converter.yml import YmlGenerator
14-
from acclimatise.execution import Executor
15-
from acclimatise.execution.local import LocalExecutor
16-
from acclimatise.flag_parser.parser import CliParser
17-
from acclimatise.model import Command, Flag
18-
from acclimatise.usage_parser.parser import UsageParser
19-
20-
logger = logging.getLogger("acclimatise")
10+
from aclimatise.converter import WrapperGenerator
11+
from aclimatise.converter.cwl import CwlGenerator
12+
from aclimatise.converter.wdl import WdlGenerator
13+
from aclimatise.converter.yml import YmlGenerator
14+
from aclimatise.execution import Executor
15+
from aclimatise.execution.local import LocalExecutor
16+
from aclimatise.flag_parser.parser import CliParser
17+
from aclimatise.model import Command, Flag
18+
from aclimatise.usage_parser.parser import UsageParser
19+
20+
logger = logging.getLogger("aclimatise")
2121

2222
default_executor = LocalExecutor()
2323

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
"""
2-
Code relating to the command line interface to acclimatise
2+
Code relating to the command line interface to aCLImatise
33
"""
44
import sys
55
from pathlib import Path
66
from typing import Iterable, Tuple
77

88
import click
99

10-
from acclimatise import WrapperGenerator, best_cmd, explore_command, parse_help
11-
from acclimatise.flag_parser.parser import CliParser
10+
from aclimatise import WrapperGenerator, best_cmd, explore_command, parse_help
11+
from aclimatise.flag_parser.parser import CliParser
1212

1313
# Some common options
1414
opt_pos = click.option(
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
from dataclasses import dataclass
88

9-
from acclimatise.model import CliArgument, Command, Flag
10-
from acclimatise.name_generation import (
9+
from aclimatise.model import CliArgument, Command, Flag
10+
from aclimatise.name_generation import (
1111
NameGenerationError,
1212
choose_unique_name,
1313
generate_name,
@@ -117,7 +117,7 @@ def choose_variable_names(
117117
"""
118118
Choose names for a list of flags. This needs to be done in one go because there is a risk of duplicate
119119
variable names otherwise
120-
:param length: See :py:func:`acclimatise.name_generation.generate_name`
120+
:param length: See :py:func:`from aclimatise.name_generation.generate_name`
121121
"""
122122
options = list(
123123
zip_longest(
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
)
1515
from dataclasses import dataclass
1616

17-
from acclimatise import cli_types
18-
from acclimatise.converter import NamedArgument, WrapperGenerator
19-
from acclimatise.model import CliArgument, Command, Flag, Positional
20-
from acclimatise.yaml import yaml
17+
from aclimatise import cli_types
18+
from aclimatise.converter import NamedArgument, WrapperGenerator
19+
from aclimatise.model import CliArgument, Command, Flag, Positional
20+
from aclimatise.yaml import yaml
2121

2222

2323
@dataclass
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
WdlType,
2020
)
2121

22-
from acclimatise import cli_types, model
23-
from acclimatise.converter import NamedArgument, WrapperGenerator
24-
from acclimatise.model import CliArgument, Command, Flag, Positional
25-
from acclimatise.nlp import wordsegment
22+
from aclimatise import cli_types, model
23+
from aclimatise.converter import NamedArgument, WrapperGenerator
24+
from aclimatise.model import CliArgument, Command, Flag, Positional
25+
from aclimatise.nlp import wordsegment
2626

2727
#: A regex, borrowed from MiniWDL, that ma
2828
WDL_IDENT = re.compile(r"[a-zA-Z][a-zA-Z0-9_]*")
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
from dataclasses import dataclass
77

8-
from acclimatise.converter import WrapperGenerator
9-
from acclimatise.model import Command
10-
from acclimatise.yaml import yaml
8+
from aclimatise.converter import WrapperGenerator
9+
from aclimatise.model import Command
10+
from aclimatise.yaml import yaml
1111

1212

1313
@dataclass

0 commit comments

Comments
 (0)