Skip to content

Commit

Permalink
mention the req packeges
Browse files Browse the repository at this point in the history
  • Loading branch information
ankit485803 committed Sep 27, 2024
1 parent da160e8 commit 301af53
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ version 0.0.2 (16/09/2024)

version 0.0.3 (27/09/2024)
----------------------------
- Second Release
- Third Release
4 changes: 3 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@


global-include *.txt *.py
global-include *.txt *.py

include resumeGenerator/Template_Resume_YourName.docx
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,17 @@ You can install `gen-cv-manager` using pip:
pip install gen-cv-manager
```

### Setup .env
```
!pip install python-docx
!pip install PyPDF2
import os
from docx import Document
from PyPDF2 import PdfReader
import shutil
```

## Use-Case

Here’s a quick example of how to use the `gen-cv-manager` package:
Expand Down
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,12 @@

# REQUIRED
packages = find_packages(), # Automatically discover packages
install_requires = [], # List external dependencies here if any
install_requires = [os, docx, PyPDF2, shruti], # List external dependencies

include_package_data=True, # Ensure non-Python files are included
package_data={
'resumeGenerator': ['Template_Resume_YourName.docx'], # Specify the path to your template file
},


license='MIT',
Expand Down

0 comments on commit 301af53

Please sign in to comment.