Skip to content

Commit

Permalink
deleted env
Browse files Browse the repository at this point in the history
  • Loading branch information
codeakki committed Jul 22, 2024
1 parent 48319c1 commit 01349b5
Show file tree
Hide file tree
Showing 10 changed files with 56 additions and 11 deletions.
Empty file removed .env
Empty file.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,5 @@ next-env.d.ts
test


myenv
myenv

25 changes: 16 additions & 9 deletions experiment/test.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,20 @@
"cells": [
{
"cell_type": "code",
"execution_count": null,
"execution_count": 1,
"metadata": {},
"outputs": [
{
"ename": "",
"evalue": "",
"output_type": "error",
"traceback": [
"\u001b[1;31mRunning cells with 'myenv (Python 3.12.4)' requires the ipykernel package.\n",
"\u001b[1;31mRun the following command to install 'ipykernel' into the Python environment. \n",
"\u001b[1;31mCommand: '/Users/akshaysharma/Desktop/Python/McqGeneratorOpenAi/myenv/bin/python -m pip install ipykernel -U --force-reinstall'"
"name": "stdout",
"output_type": "stream",
"text": [
"ok\n"
]
}
],
"source": []
"source": [
"print(\"ok\")"
]
},
{
"cell_type": "code",
Expand All @@ -33,7 +32,15 @@
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.4"
}
},
Expand Down
10 changes: 10 additions & 0 deletions mcqgenrator.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Metadata-Version: 2.1
Name: mcqgenrator
Version: 0.0.1
Author: akki
Author-email: codewithakki
Requires-Dist: openai
Requires-Dist: langchain
Requires-Dist: streamlit
Requires-Dist: python-dotenv
Requires-Dist: PyPDF2
9 changes: 9 additions & 0 deletions mcqgenrator.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
README.md
setup.py
mcqgenrator.egg-info/PKG-INFO
mcqgenrator.egg-info/SOURCES.txt
mcqgenrator.egg-info/dependency_links.txt
mcqgenrator.egg-info/requires.txt
mcqgenrator.egg-info/top_level.txt
src/__init__.py
src/mcqGenerator/__init__.py
1 change: 1 addition & 0 deletions mcqgenrator.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

5 changes: 5 additions & 0 deletions mcqgenrator.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
openai
langchain
streamlit
python-dotenv
PyPDF2
1 change: 1 addition & 0 deletions mcqgenrator.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
src
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ openai
langchain
streamlit
python-dotenv
PyPDF2
PyPDF2
-e .
10 changes: 10 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from setuptools import find_packages,setup

setup(
name='mcqgenrator',
version='0.0.1',
author='akki',
author_email='codewithakki',
install_requires=["openai","langchain","streamlit","python-dotenv","PyPDF2"],
packages=find_packages()
)

0 comments on commit 01349b5

Please sign in to comment.