fix requirements.txt and a strange import
This commit is contained in:
17
Makefile
Normal file
17
Makefile
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
init:
|
||||||
|
pip install -r requirements.txt
|
||||||
|
|
||||||
|
install:
|
||||||
|
cp jeevesbot/env.py.dist jeevesbot/env.py
|
||||||
|
|
||||||
|
clearlog:
|
||||||
|
rm jeeves.log
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm jeeves.log
|
||||||
|
rm jeevesbot/env.py
|
||||||
|
rm -rf jeevesbot/__pycache/
|
||||||
|
rm -rf __pycache/
|
||||||
|
|
||||||
|
lint:
|
||||||
|
pylint jeeves.py jeevesbot/
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
from types import resolve_bases
|
|
||||||
import discord
|
import discord
|
||||||
from discord.ext import commands
|
from discord.ext import commands
|
||||||
import logging
|
import logging
|
||||||
|
|||||||
@@ -1,9 +1,13 @@
|
|||||||
aiohttp 3.7.4.post0
|
# nonspecific versions
|
||||||
async-timeout 3.0.1
|
aiohttp
|
||||||
dice 3.1.2
|
async-timeout
|
||||||
discord.py 1.7.1
|
dice
|
||||||
docopt 0.6.2
|
discord.py
|
||||||
multidict 5.1.0
|
docopt
|
||||||
pyparsing 2.4.7
|
multidict
|
||||||
typing-extensions 3.7.4.3
|
pyparsing
|
||||||
yarl 1.6.3
|
typing-extensions
|
||||||
|
pylint
|
||||||
|
|
||||||
|
# needs this version, otherwise TypeErrors will break stuff
|
||||||
|
yarl==1.5.1
|
||||||
Reference in New Issue
Block a user