Metadata-Version: 2.1
Name: create-app-fastapi
Version: 0.0.7
Summary: Library for initializing FastAPI projects - create-app-fastapi
Home-page: https://github.com/ravishnu60/create-app-fastapi.git
Author: Ravishnu
Author-email: ravishnu60@gmail.com
License: UNKNOWN
Keywords: fastapi,fastapi project,project structure,api structure,python fastapi project structure
Platform: UNKNOWN
Requires-Python: >=3.9
Description-Content-Type: text/markdown

A package used to create fastAPI project structure with virtual environment and dependencies.
    Once you install this package use below command to create fastapi project,
    
    create-app-fastapi project-name
    
    The Project structure will be created in current working directory.
    The structure will be,
    
		root-folder
		|-APIs
		|  |-__init__.py
		|  |-api.py
		|-models
		|  |-__init__.py
		|  |-model.py
		|-schemas
		|  |-__init__.py
		|  |-schema.py
		|-settings
		|  |-__init__.py
		|  |-auth.py
		|  |-config.py
		|  |-db.py
		|-testcase
		|  |-__init__.py
		|  |-test_main.py
		|-venv
		|-.gitignore
		|-main.py
		|-requirements.txt
    
    

