Metadata-Version: 2.4
Name: newgh
Version: 0.1.0
Author-email: lost_0 <l05t_0@proton.me>
License-Expression: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Topic :: File Formats
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# newgh

Sets up a project repo for modern development with python.

Run:
```
newgh MyNewProject
```
## Project scaffold:
```
MyNewProject/
├── src/            # Your source code [Empty]
├── tests/          # Your pytest files [Empty]
├── docs/           # Documentation [Empty]
├── .gitignore      # Standard Python ignores
└── README.md       # Project overview
```

## Default README.md:
```
## Setup Instructions
1. Clone the repo
2. Activate environment: `.\env\Scripts\activate`
3. Install dependencies: `pip install -r requirements.txt`
```

## Next Steps

* **Automated Testing**: Auto-generate default workflows `test_dummy`.
* **Licensing**: Option to create a `LICENSE` file.
* **PyPI Ready**: Option to create a `pyproject.toml` for easy distribution.
