Skip to content

Commit

Permalink
treewide: mytool -> my_tool
Browse files Browse the repository at this point in the history
Keep naming consitant, so that nix run .# and friends work
  • Loading branch information
phaer committed Jul 27, 2024
1 parent f6372ff commit 0bf24e3
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/src/guides/pip.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ in {
buildPythonPackage = {
pyproject = true; # (6)
pythonImportsCheck = [ # (7)
"mytool"
"my_tool"
];
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

buildPythonPackage = {
pythonImportsCheck = [
"mytool"
"my_tool"
];
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = [ "setuptools" ]
build-backend = "setuptools.build_meta"

[project]
name = "mytool"
name = "my-tool"
description = "my tool"
version = "1.0.0"
dependencies = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ in {
buildPythonPackage = {
pyproject = true;
pythonImportsCheck = [
"mytool"
"my_tool"
];
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = [ "setuptools" ]
build-backend = "setuptools.build_meta"

[project]
name = "mytool"
name = "my-tool"
description = "my tool"
version = "1.0.0"
dependencies = [
Expand Down

0 comments on commit 0bf24e3

Please sign in to comment.