I do not want to include my email address in my pyproject.toml file or in my project's source code.
I added this to my pyproject.toml, hoping that it would result in no email address being used:
[template]
name = "treyhunner"
email = ""
Instead, this sets the email address to an empty string, showing treyhunner <> at the top of files and this in pyproject.toml:
authors = [
{ name = "Trey Hunner", email = "" },
]
It would be nice to have a way to blank out my email address when using hatch new to create a new project.
I do not want to include my email address in my
pyproject.tomlfile or in my project's source code.I added this to my
pyproject.toml, hoping that it would result in no email address being used:Instead, this sets the email address to an empty string, showing
treyhunner <>at the top of files and this inpyproject.toml:It would be nice to have a way to blank out my email address when using
hatch newto create a new project.