Skip to content

Commit 79ba8a2

Browse files
committed
Move starter_repo directory to root level
1 parent 800c2f2 commit 79ba8a2

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

Diff for: README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This repository serves as a template demonstrating Python best practices for dat
1212
## Features
1313

1414
### 1. Data Processing and Visualization
15-
The main script ([src/starter_repo/plot_data.py](src/starter_repo/plot_data.py)) demonstrates:
15+
The main script ([starter_repo/plot_data.py](starter_repo/plot_data.py)) demonstrates:
1616
- Reading CSV files using pandas
1717
- Creating plots with matplotlib
1818
- Modern Python type annotations
@@ -58,9 +58,8 @@ GitHub Actions workflows are set up for:
5858
### 5. Project Structure
5959
```
6060
.
61-
|- src/
62-
| |- starter_repo/ # Source code
63-
| |- plot_data.py # Main script
61+
|- starter_repo/ # Source code
62+
| |- plot_data.py # Main script
6463
|- tests/ # Test files
6564
| |- test_plot_data.py
6665
|- data/ # Sample data

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["hatchling"]
33
build-backend = "hatchling.build"
44

55
[tool.hatch.build.targets.wheel]
6-
packages = ["src/starter_repo"]
6+
packages = ["starter_repo"]
77

88
[project]
99
name = "starter-repo"
File renamed without changes.

0 commit comments

Comments
 (0)