From ec66ed5ef74ffd0c9763a622bed7a7d4c38fcb87 Mon Sep 17 00:00:00 2001 From: Anirban Kar Date: Sat, 3 Jun 2023 00:02:34 +0530 Subject: [PATCH] tag 0.0.3 --- README.md | 8 +++----- setup.py | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c914534..84d9356 100644 --- a/README.md +++ b/README.md @@ -15,9 +15,7 @@ LazyDev is a Python module that utilizes GPT models to create entire coding proj ## Installation ``` -git clone https://github.com/thecodacus/lazy-dev.git -cd lazy-dev -pip install -r requirements.txt +pip install lazydev ``` LazyDev requires Python 3.6 or above. @@ -27,7 +25,7 @@ LazyDev requires Python 3.6 or above. Using LazyDev is as simple as running a single command. Once installed, you can initiate the project generation process by executing the following command: ``` -python -m lazydev.develop -r +lazydev develop -r ``` Replace `` with a brief description of your project's purpose or objective. LazyDev will then prompt you with a series of questions to gather the necessary information for project generation. @@ -39,7 +37,7 @@ After answering the questions, LazyDev will proceed to plan the project structur Let's say you want to create a Python web application for managing a book library. You can use LazyDev to automate the project setup. Here's an example command: ``` -python -m lazydev.develop -r "Book Library Web App" +lazydev develop -r "Book Library Web App" ``` LazyDev will ask you questions like: diff --git a/setup.py b/setup.py index 9391a8c..371c7af 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="lazydev", - version='0.0.2', + version='0.0.3', packages=find_packages(), install_requires=[ "langchain>=0.0.188",