Skip to content

Commit ec66ed5

Browse files
committed
tag 0.0.3
1 parent e3f4c67 commit ec66ed5

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@ LazyDev is a Python module that utilizes GPT models to create entire coding proj
1515
## Installation
1616

1717
```
18-
git clone https://github.com/thecodacus/lazy-dev.git
19-
cd lazy-dev
20-
pip install -r requirements.txt
18+
pip install lazydev
2119
```
2220

2321
LazyDev requires Python 3.6 or above.
@@ -27,7 +25,7 @@ LazyDev requires Python 3.6 or above.
2725
Using LazyDev is as simple as running a single command. Once installed, you can initiate the project generation process by executing the following command:
2826

2927
```
30-
python -m lazydev.develop -r <what you want to do>
28+
lazydev develop -r <what you want to do>
3129
```
3230

3331
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.
@@ -39,7 +37,7 @@ After answering the questions, LazyDev will proceed to plan the project structur
3937
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:
4038

4139
```
42-
python -m lazydev.develop -r "Book Library Web App"
40+
lazydev develop -r "Book Library Web App"
4341
```
4442

4543
LazyDev will ask you questions like:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="lazydev",
8-
version='0.0.2',
8+
version='0.0.3',
99
packages=find_packages(),
1010
install_requires=[
1111
"langchain>=0.0.188",

0 commit comments

Comments
 (0)