Skip to content

Commit a6c079c

Browse files
committed
Update from template, fix readme in rust foldeR
1 parent b37a19a commit a6c079c

File tree

5 files changed

+35
-30
lines changed

5 files changed

+35
-30
lines changed

.copier-answers.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Changes here will be overwritten by Copier
2-
_commit: 0c4df0a
2+
_commit: f8b63c7
33
_src_path: .
44
add_extension: rust
5-
email: t.paine154@gmail.com
5+
66
github: python-project-templates
77
project_description: A Rust-Python project template
88
project_name: rust template

.github/CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
5555
## Enforcement
5656

5757
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58-
reported by contacting the project team at t.paine154@gmail.com. All
58+
reported by contacting the project team at [email protected].com. All
5959
complaints will be reviewed and investigated and will result in a response that
6060
is deemed necessary and appropriate to the circumstances. The project team is
6161
obligated to maintain confidentiality with regard to the reporter of an incident.

Cargo.lock

Lines changed: 25 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "rust-template"
7-
authors = [{name = "Python Project Template Authors", email = "t.paine154@gmail.com"}]
7+
authors = [{name = "Python Project Template Authors", email = "[email protected].com"}]
88
description="A Rust-Python project template"
99
readme = "README.md"
1010
license = { text = "Apache-2.0" }
@@ -77,6 +77,7 @@ ignore = [
7777
"Makefile",
7878
"setup.py",
7979
"rust/Cargo.lock",
80+
"rust/README.md",
8081
]
8182

8283
[tool.pytest.ini_options]
@@ -86,17 +87,14 @@ testpaths = "rust_template/tests"
8687
[tool.ruff]
8788
line-length = 150
8889

90+
[tool.ruff.lint]
91+
extend-select = ["I"]
92+
8993
[tool.ruff.lint.isort]
9094
combine-as-imports = true
9195
default-section = "third-party"
9296
known-first-party = ["rust_template"]
93-
section-order = [
94-
"future",
95-
"standard-library",
96-
"third-party",
97-
"first-party",
98-
"local-folder",
99-
]
97+
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
10098

10199
[tool.ruff.lint.per-file-ignores]
102100
"__init__.py" = ["F401"]

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rust_template"
33
version = "0.1.0"
4-
authors = ["Python Project Template Authors <t.paine154@gmail.com>"]
4+
authors = ["Python Project Template Authors <[email protected].com>"]
55
edition = "2021"
66
license = "Apache-2.0"
77
readme = "../README.md"

0 commit comments

Comments
 (0)