@@ -3,7 +3,7 @@ requires = ["maturin>=1,<2"]
33build-backend = " maturin"
44
55[project ]
6- name = " rust -template"
6+ name = " python -template-rust "
77authors = [{name = " Python Project Template Authors" , email = " 3105306+timkpaine@users.noreply.github.com" }]
88description =" A Rust-Python project template"
99readme = " README.md"
@@ -28,8 +28,8 @@ classifiers = [
2828dependencies = []
2929
3030[project .urls ]
31- Repository = " https://github.com/python-project-templates/rust -template"
32- Homepage = " https://github.com/python-project-templates/rust -template"
31+ Repository = " https://github.com/python-project-templates/python -template-rust "
32+ Homepage = " https://github.com/python-project-templates/python -template-rust "
3333
3434[project .optional-dependencies ]
3535develop = [
@@ -53,7 +53,7 @@ commit = true
5353tag = true
5454
5555[[tool .bumpversion .files ]]
56- filename = " rust_template /__init__.py"
56+ filename = " python_template_rust /__init__.py"
5757search = ' __version__ = "{current_version}"'
5858replace = ' __version__ = "{new_version}"'
5959
@@ -85,7 +85,7 @@ ignore = [
8585before-build = " rustup show"
8686build = " cp39-*"
8787skip = " *musllinux*"
88- test-command = " pytest -vvv {project}/rust_template /tests"
88+ test-command = " pytest -vvv {project}/python_template_rust /tests"
8989test-requires = [" pytest" , " pytest-cov" , " pytest-sugar" , " pytest-xdist" ]
9090
9191[tool .cibuildwheel .linux ]
@@ -103,7 +103,7 @@ archs = "AMD64 x86"
103103[tool .coverage .run ]
104104branch = true
105105omit = [
106- " rust_template /tests/integration/" ,
106+ " python_template_rust /tests/integration/" ,
107107]
108108[tool .coverage .report ]
109109exclude_also = [
@@ -117,7 +117,7 @@ fail_under = 50
117117[tool .pytest .ini_options ]
118118addopts = [" -vvv" , " --junitxml=junit.xml" ]
119119asyncio_mode = " strict"
120- testpaths = " rust_template /tests"
120+ testpaths = " python_template_rust /tests"
121121
122122[tool .ruff ]
123123line-length = 150
@@ -128,7 +128,7 @@ extend-select = ["I"]
128128[tool .ruff .lint .isort ]
129129combine-as-imports = true
130130default-section = " third-party"
131- known-first-party = [" rust_template " ]
131+ known-first-party = [" python_template_rust " ]
132132section-order = [" future" , " standard-library" , " third-party" , " first-party" , " local-folder" ]
133133
134134[tool .ruff .lint .per-file-ignores ]
0 commit comments