Metadata-Version: 2.1
Name: fastberry
Version: 0.0.1
Summary: Easy FastAPI & Strawberry
License: UNKNOWN
Keywords: library module package management
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Welcome to **Dexter**
```
project_root/
├── data/           -->  Any <data> for the project.
├── dist/           -->  Source <distribution>.
├── docs/           -->  Write the <documentation> here.
├── scripts/        -->  Write the <shell/bash> here.
|   └── watcher.py  -->  Code style enforcer & rating.
├── src/            -->  Write the <code> here.
|   |
|   └── project_name/       -->  (Library).
|       ├── __init__.py     -->  (Library: __init__) import [pkg1, pkg2, etc...] in this file.
|       ├── __main__.py     -->  (Library: __main__) any function you want to run as a <script> with "python -m project_name".
|       ├── script.py       -->  Script to use in --> setup.cfg --> [options.entry_points] <console_scripts>.
|       |
|       └── pkg1/           -->  (Package).
|       |   ├── __init__.py -->  (Constructor).
|       |   ├── creator.py  -->  (Module).
|       |   └── details.py  -->  (Module).
|       |
|       └── pkg2/           -->  (Package).
|           ├── __init__.py -->  (Constructor).
|           ├── creator.py  -->  (Module).
|           └── details.py  -->  (Module).
|
└── tests/ -->  Testing the <code>.
```

<br />


## New Project (**Clone**)
```sh
touch clone_repo.sh
nano clone_repo.sh
```

## Clone Repo Script:
```sh
# Variables
REPO="https://github.com/hlop3z/dexter"

if [ "$1" != "" ]; then
    # Do Cloning
    git clone $REPO $1
    cd $1
    rm -rf .git/
    mv src/project_name src/$1
else
    # Return Error
    printf "\nPlease enter a name for the project. \n\n"
    printf "For example: \n"
    printf "\tclone_repo project_name\n"
fi
```


## Usage:
```sh
sh clone_repo.sh example_lib
```

<br />

# Go to [**PipEnv** — Cheat Sheet](./PIPENV.md)

<br />

## When Ready . . .
```sh
python -m build
```

```sh
python -m pip install twine
```

```sh
python -m twine upload dist/*
```


