Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcarrega committed Jan 28, 2022
1 parent c92ee87 commit 526dd97
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ complexity = "find src -iname '*.py' -exec python -m mccabe {} \\;"
error-check = "python3 -m pyflakes src"
format-black = "black src/"
format-pep8 = "find src -iname '*.py' -exec autopep8 --in-place --aggressive --aggressive {} \\;"
graph = "pycallgraph src/ --output=graph.svg"
graph = "pycallgraph src/ --output=dev/graph.svg"
linter = "find src -iname '*.py' -exec pylint {} \\;"
profiler-start = "vprof -c cmh src/main.py --output-file profiler.json"
profiler-view = "vprof --input-file profiler.json"
profiler-start = "vprof -c cmh src/main.py --output-file dev/profiler.json"
profiler-view = "vprof --input-file dev/profiler.json"
style-guide = "flake8 src/"
30 changes: 30 additions & 0 deletions dev/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#
# These requirements were autogenerated by pipenv
# To regenerate from the project's Pipfile, run:
#
# pipenv lock --requirements --dev-only
#

-i https://pypi.org/simple
astroid==2.9.3; python_full_version >= '3.6.2'
autopep8==1.6.0
black==21.12b0
click==8.0.1
flake8==4.0.1
isort==5.10.1; python_version < '4.0' and python_full_version >= '3.6.1'
lazy-object-proxy==1.7.1; python_version >= '3.6'
mccabe==0.6.1
mypy-extensions==0.4.3
pathspec==0.9.0
platformdirs==2.4.1; python_version >= '3.7'
psutil==5.9.0; python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'
pycallgraph==1.0.1
pycodestyle==2.8.0
pyflakes==2.4.0
pylint==2.12.2
setuptools==57.5.0
toml==0.10.2; python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'
tomli==1.2.3; python_version >= '3.6'
typing-extensions==4.0.1; python_version >= '3.6'
vprof==0.38
wrapt==1.13.3; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'
2 changes: 1 addition & 1 deletion scripts/requirements-dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# Copyright (c) 2020-2029 GUARD Project <guard-project.eu>
# author: Alex Carrega <alessandro.carrega@cnit.it>

pipenv lock -r --dev-only > requirements-dev.txt
pipenv lock -r --dev-only > dev/requirements.txt

0 comments on commit 526dd97

Please sign in to comment.