fix: correct pyproject.toml for project-scaffold-cli

- Fixed package name from auto-readme-cli to project-scaffold-cli
- Fixed dependencies to match project-scaffold-cli requirements
- Fixed linting import sorting issues in test files
This commit is contained in:
Developer
2026-02-05 11:49:49 +00:00
parent db5d4a8d48
commit 155bc36ded
30 changed files with 1846 additions and 468 deletions

View File

@@ -0,0 +1,27 @@
# {{ project_name }}
{{ description }}
## Installation
```bash
go get github.com/{{ author|replace(' ', '-') }}/{{ project_slug }}
```
## Usage
```go
package main
import (
"{{ author|replace(' ', '-') }}/{{ project_slug }}"
)
func main() {
{{ project_slug }}.Run()
}
```
## License
{{ license }}

View File

@@ -0,0 +1,5 @@
module {{ project_slug }}
go 1.20
require github.com/{{ author|replace(' ', '-') }}/{{ project_slug }} v1.0.0

View File

@@ -0,0 +1,9 @@
package main
import (
"fmt"
)
func main() {
fmt.Println("Welcome to {{ project_name }}!")
}