-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial renaming to plate-simulation
- Loading branch information
1 parent
2527b9e
commit 26809bb
Showing
27 changed files
with
70 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
my_app-assets/__init__.py → plate_simulation-assets/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Copyright (c) 2024 Mira Geoscience Ltd. | ||
# | ||
# This file is part of my_app package. | ||
# This file is part of plate_simulation package. | ||
# | ||
# All rights reserved. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{"title": "plate-simulation Hello World", | ||
"run_command": "plate_simulation.commands.hello", | ||
"conda_environment": "plate_simulation", | ||
"name": { | ||
"main": true, | ||
"label": "Name", | ||
"value": "World", | ||
"tooltip": "Name to say hello to" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
my_app/commands/__init__.py → plate_simulation/commands/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Copyright (c) 2024 Mira Geoscience Ltd. | ||
# | ||
# This file is part of my-app package. | ||
# This file is part of plate-simulation package. | ||
# | ||
# All rights reserved. |
2 changes: 1 addition & 1 deletion
2
my_app/commands/hello_world.py → plate_simulation/commands/hello_world.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[tool.poetry] | ||
name = "my-app" | ||
name = "plate-simulation" | ||
version = "0.1.0-alpha.1" | ||
license = "" # TODO: pick a license type | ||
description = "My application" | ||
authors = ["Mira Geoscience <[email protected]>"] | ||
repository = "https://github.com/MiraGeoscience/my-app" | ||
repository = "https://github.com/MiraGeoscience/plate-simulation" | ||
homepage = "https://mirageoscience.com" | ||
readme = "README.rst" | ||
packages = [ | ||
{ include = "my_app" }, | ||
{ include = "my_app-assets" }, | ||
{ include = "plate_simulation" }, | ||
{ include = "plate_simulation-assets" }, | ||
] | ||
|
||
# TODO: adjust classifiers | ||
|
@@ -28,7 +28,7 @@ classifiers = [ | |
] | ||
|
||
[tool.poetry.scripts] | ||
my_app_hello = 'my_app.commands.hello' | ||
my_app_hello = 'plate_simulation.commands.hello' | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.9, <3.11" | ||
|
@@ -92,9 +92,9 @@ plugins = [ | |
|
||
[tool.coverage.run] | ||
branch = true | ||
source = ["my_app"] | ||
source = ["plate_simulation"] | ||
omit = [ | ||
"my_app/commands/hello_world.py" | ||
"plate_simulation/commands/hello_world.py" | ||
] | ||
|
||
[tool.coverage.report] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Copyright (c) 2022-2024 Mira Geoscience Ltd. | ||
# | ||
# This file is part of my-app package. | ||
# This file is part of plate-simulation package. | ||
# | ||
# All rights reserved. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.