add developer tools to requirements and gitignore

This commit is contained in:
Milan Kolar 2021-01-08 22:25:48 +01:00
parent dd7dfd57da
commit 906751d3f8
3 changed files with 15 additions and 1 deletions

6
.gitignore vendored
View file

@ -71,6 +71,10 @@ package-lock.json
pype/premiere/ppro/js/debug.log
# Idea
# IDEA
######
.idea/
# VScode files
.vscode/
.env

View file

@ -8,6 +8,7 @@ Click
clique==1.5.0
coverage
cx_Freeze
flake8
ftrack-python-api==2.0.0
ffmpeg-python
google-api-python-client
@ -17,6 +18,9 @@ log4mongo
git+https://github.com/pypeclub/OpenTimelineIO.git@develop
pathlib2
Pillow
pycodestyle
pydocstyle
pylint
pynput
pymongo
pytest

View file

@ -10,6 +10,9 @@ exclude =
max-complexity = 30
[pylint.'MESSAGES CONTROL']
disable = no-member
[pydocstyle]
convention = google
ignore = D107
@ -20,3 +23,6 @@ omit = /tests
[coverage:html]
directory = ./coverage
[tool:pytest]
norecursedirs = repos/* pype/modules/ftrack/*