Upd: setup.py (extra deps), makefile, check.sh; fixed deps versions (==
)
This commit is contained in:
parent
cfee59d119
commit
b8399c2de5
5 changed files with 41 additions and 26 deletions
6
Makefile
6
Makefile
|
@ -8,7 +8,7 @@ doc:
|
|||
python3 -m mkdocs build
|
||||
|
||||
clean:
|
||||
rm -rf dist python_aternos.egg-info
|
||||
rm -rf dist build python_aternos.egg-info
|
||||
rm -rf python_aternos/__pycache__
|
||||
rm -rf examples/__pycache__
|
||||
rm -rf tests/__pycache__
|
||||
|
@ -18,11 +18,11 @@ test:
|
|||
python3 -m unittest discover -v ./tests
|
||||
|
||||
check:
|
||||
python3 -m mypy .
|
||||
python3 -m mypy ./python_aternos
|
||||
python3 -m pylint ./python_aternos
|
||||
|
||||
fullcheck:
|
||||
chmod +x check.sh; bash check.sh
|
||||
|
||||
format:
|
||||
python3 -m autopep8 -r --in-place .
|
||||
python3 -m autopep8 -r --in-place ./python_aternos
|
||||
|
|
Reference in a new issue