Metadata-Version: 2.1
Name: pipsetup
Version: 0.1
Summary: A tool to generate Python project structures
Home-page: https://github.com/leonardogonzalolaura/workspace_setup_pip
Author: Leonardo Daniel Gonzalo Laura
Author-email: glleonardodaniel@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# pipsetup

`pipsetup` is a Python tool for generating a structured project template, making it easier to set up and start new Python projects. It automates the creation of essential project files and directories, streamlining the setup process.

## Features

- Generate a standard Python project structure.
- Create essential files such as `setup.py`, `setup.cfg`, `README.md`, `LICENSE`, and `MANIFEST.in`.
- Customize the project structure with user-defined project names, author names, and email addresses.

## Installation

You can install `pipsetup` via PyPI (Python Package Index). Use the following command:

```sh
pip install pipsetup
```

## Usage

After installing `pipsetup`, you can use it directly from the command line to create a new project. The command format is as follows:

```bash
pipsetup <project_name> <user_github> <email>
```

## Parameters

- `<project_name>`: The name of the new project you want to create.
- `<user_github>`: The author of the project.
- `<email>`: The email address of the author.

## Example

To create a new project named `my_new_project` with the author `John Doe` and email `john.doe@example.com`, run the following command:

```bash
pipsetup my_new_project "John Doe" john.doe@example.com
