Skip to content

Commit

Permalink
tag 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
thecodacus committed Jun 2, 2023
1 parent e3f4c67 commit ec66ed5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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 <what you want to do>
lazydev develop -r <what you want to do>
```

Replace `<what you want to do>` 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.
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="lazydev",
version='0.0.2',
version='0.0.3',
packages=find_packages(),
install_requires=[
"langchain>=0.0.188",
Expand Down

0 comments on commit ec66ed5

Please sign in to comment.