revision 2.1

This commit is contained in:
.[d]. 2022-08-13 17:07:19 -05:00
parent 0d06c6ae6e
commit 9c8cb2dc48
3 changed files with 33 additions and 16 deletions

26
Pipfile

@ -5,24 +5,24 @@ name = "pypi"
[packages]
irc3 = "*"
astroid = "*"
aiocron = "*"
timeago = "*"
isodate = "*"
google-api-python-client = "*"
oauth2client = "*"
aiohttp = "*"
lxml = "*"
asyncio = "*"
async-timeout = "*"
lxml = "*"
python-twitter = "*"
googlesearch-python = "*"
aiocron = "*"
aiohttp = "*"
astroid = "*"
timeago = "*"
isodate = "*"
pyfiglet = "*"
ipdb = "*"
openai = "*"
google-api-python-client = "*"
googlesearch-python = "*"
python-telegram-bot = "*"
python-twitter = "*"
oauth2client = "*"
matrix-nio = "*"
discord = "*"
python-telegram-bot = "*"
openai = "*"
ipdb = "*"
[dev-packages]

17
requirements.txt Normal file

@ -0,0 +1,17 @@
irc3
timeago
isodate
google-api-python-client
oauth2client
aiohttp
asyncio
async-timeout
lxml
python-twitter
googlesearch-python
pyfiglet
ipdb
openai
matrix-nio
discord
python-telegram-bot

@ -4,13 +4,13 @@ if [ $? -eq 1 ]; then
exit
fi
#####################################################################################################################################
python3 -n pip > /dev/null 2>&1
python3 -m pip > /dev/null 2>&1
if [ $? -eq 1 ]; then
echo "<<< error: missing python3 pip module>>> - to continue install python3 pip module first; aborting"
exit
fi
#####################################################################################################################################
python3 -n pipenv > /dev/null 2>&1
python3 -m pipenv > /dev/null 2>&1
if [ $? -eq 1 ]; then
echo "<<< error: missing python3 pipenv module >>> - attempting to auto-install"
python3 -m pip install pipenv
@ -150,7 +150,7 @@ else
#############################################################################################################################
mkdir .venv
pipenv --python 3.9
pipenv install
pipenv install --skip-lock
pipenv run maple
#############################################################################################################################
#####################################################################################################################################