Skip to content

Commit c5e10ef

Browse files
committed
feat: initial commit
1 parent 1ca9746 commit c5e10ef

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

noxfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
REPO_ROOT: Path = Path(__file__).parent.resolve()
2727
SCRIPTS_FOLDER: Path = REPO_ROOT / "scripts"
2828
CRATES_FOLDER: Path = REPO_ROOT / "rust"
29+
30+
PROJECT_NAME: str = "robust-python-demo"
2931
PACKAGE_NAME: str = "robust_python_demo"
3032
GITHUB_USER: str = "56kyle"
3133

@@ -48,7 +50,7 @@
4850
def setup_git(session: Session) -> None:
4951
"""Set up the git repo for the current project."""
5052
session.run(
51-
"python", SCRIPTS_FOLDER / "setup-git.py", REPO_ROOT, "-u", GITHUB_USER, "-n", PACKAGE_NAME, external=True
53+
"python", SCRIPTS_FOLDER / "setup-git.py", REPO_ROOT, "-u", GITHUB_USER, "-n", PROJECT_NAME, external=True
5254
)
5355

5456

0 commit comments

Comments
 (0)