Skip to content

Commit d255c87

Browse files
committed
Update URLs to point to the new repository
1 parent 8ec0023 commit d255c87

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ FMU Manipulation Toolbox also allows to group FMU's inside FMU Containers. (see
1313
Two options available to install FMU Manipulation Toolbox:
1414

1515
- (Easiest option) Install with from PyPI: `python -m pip install fmu_manipulation`
16-
- Compile and install from [github repository](https://github.com/grouperenault/fmutool). You will need
16+
- Compile and install from [github repository](https://github.com/grouperenault/fmu_manipulation_toolbox). You will need
1717
- Python required packages. See `requirements.txt`.
1818
- C compiler
1919

doc/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## FMU Manipulation Toolbox validation plan
22

3-
Flowchart of a typical usage of FMUTool:
3+
Flowchart of a typical usage of FMU Manipulation Toolbox:
44
```mermaid
55
flowchart LR
66
fmu_in["Input FMU"]
@@ -13,7 +13,7 @@ flowchart LR
1313
Test suite is implemented in [tests directory](../tests).
1414

1515
### FMU Import Compatibility information
16-
FMU Manipulation Toolbox import supports FMI 2.0 and Co-Simulation interface.
16+
FMU Manipulation Toolbox import supports FMI-2.0 and Co-Simulation interface.
1717

1818
#### Tested Exporting Tool
1919
- Amesim
@@ -24,7 +24,7 @@ Automated testsuite use [bouncing_ball.fmu](../tests/bouncing_ball.fmu).
2424

2525

2626
### FMU Export Compatibility information
27-
FMU Manipulation Toolbox export supports FMI 2.0 and implements Co-Simulation interface.
27+
FMU Manipulation Toolbox export supports FMI-2.0 and implements Co-Simulation interface.
2828

2929
#### Validation Tools
3030
- fmpy

fmu_manipulation_toolbox/checker.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def __repr__(self):
1717

1818
def fmi_attrs(self, attrs):
1919
if attrs['fmiVersion'] not in self.SUPPORTED_FMI_VERSIONS:
20-
print(f"ERROR: fmutool only support FMI {','.join(self.SUPPORTED_FMI_VERSIONS)} versions.")
20+
print(f"ERROR: Expected FMI {','.join(self.SUPPORTED_FMI_VERSIONS)} versions.")
2121
return
2222

2323
xsd_filename = os.path.join(os.path.dirname(__file__), "resources", "fmi-" + attrs['fmiVersion'],

fmu_manipulation_toolbox/cli.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def fmutool():
5353
description="Analyse and Manipulate a FMU by modifying its 'modelDescription.xml'",
5454
formatter_class=make_wide(argparse.HelpFormatter),
5555
add_help=False,
56-
epilog="see: https://github.com/grouperenault/fmutool/blob/main/README.md")
56+
epilog="see: https://github.com/grouperenault/fmu_manipulation_toolbox/blob/main/README.md")
5757

5858
def add_option(option, *args, **kwargs):
5959
parser.add_argument(option, *args, help=help_message.usage(option), **kwargs)
@@ -153,7 +153,7 @@ def fmucontainer():
153153
parser = argparse.ArgumentParser(prog="fmucontainer", description="Generate FMU from FMU's",
154154
formatter_class=make_wide(argparse.ArgumentDefaultsHelpFormatter),
155155
add_help=False,
156-
epilog="see: https://github.com/grouperenault/fmutool/blob/main/"
156+
epilog="see: https://github.com/grouperenault/fmu_manipulation_toolbox/blob/main/"
157157
"container/README.md")
158158

159159
parser.add_argument('-h', '-help', action="help")

fmu_manipulation_toolbox/gui.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def loadResource(self, type, name):
153153

154154

155155
class HelpWidget(QLabel):
156-
HELP_URL = "https://github.com/grouperenault/fmutool/blob/main/README.md"
156+
HELP_URL = "https://github.com/grouperenault/fmu_manipulation_toolbox/blob/main/README.md"
157157

158158
def __init__(self):
159159
super().__init__()

fmu_manipulation_toolbox/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
__author__ = "[email protected]"
77
__copyright__ = "Copyright 2023-2024, Renault SAS"
88
__license__ = """This code is released under the 2-Clause BSD license.
9-
See https://github.com/grouperenault/fmutool/blob/main/LICENSE.txt"""
9+
See https://github.com/grouperenault/fmu_manipulation_toolbox/blob/main/LICENSE.txt"""

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"fmucontainer = fmu_manipulation_toolbox.cli:fmucontainer"],
4444
},
4545
author=author,
46-
url="https://github.com/grouperenault/fmutool/",
46+
url="https://github.com/grouperenault/fmu_manipulation_toolbox/",
4747
description="FMU Manipulation Toobox is a python application which help to modify a Functional Mock-up Units (FMUs) "
4848
"without recompilation or to group them into FMU Containers",
4949
long_description="""FMU Manipulation Toolbox is a python application which help to modify a Functional Mock-up Units (FMUs)

0 commit comments

Comments
 (0)