Remove pystrich from conda environment
Showing
environment.yml
0 → 100644
... | ... | @@ -3,7 +3,7 @@ |
"main": "index.js", | ||
"license": "AGPL-3.0", | ||
"scripts": { | ||
"dev": "concurrently --kill-others --names \"WEBPACK,PYTHON,CELERY\" --prefix-colors \"bgBlue.bold,bgGreen.bold,bgRed.bold\" \"webpack-dev-server --hot --inline --progress --config webpack.dev.js\" \"ZESJE_SETTINGS=$(pwd)/zesje.dev.cfg python3 zesje\" \"ZESJE_SETTINGS=$(pwd)/zesje.dev.cfg celery -A zesje.celery worker -l info --autoscale=4,1 --max-tasks-per-child=16\"", | ||
"dev": "concurrently --kill-others --names \"WEBPACK,PYTHON,CELERY,REDIS\" --prefix-colors \"bgBlue.bold,bgGreen.bold,bgRed.bold,bgYellow.bold\" \"webpack-dev-server --hot --inline --progress --config webpack.dev.js\" \"ZESJE_SETTINGS=$(pwd)/zesje.dev.cfg python3 zesje\" \"ZESJE_SETTINGS=$(pwd)/zesje.dev.cfg celery -A zesje.celery worker -l info --autoscale=4,1 --max-tasks-per-child=16\" \"redis-server redis.conf\"", | ||
"build": "webpack --config webpack.prod.js", | ||
"ci": "yarn lint; yarn test", | ||
"lint": "yarn lint:js; yarn lint:py", | ||
... | ... |
redis.conf
0 → 100644
requirements-dev.txt
deleted
100644 → 0
requirements.txt
deleted
100644 → 0
# Core components | ||
flask | ||
flask_restful | ||
flask_sqlalchemy | ||
sqlalchemy | ||
Flask-Migrate | ||
alembic | ||
pyyaml | ||
celery | ||
redis | ||
# General utilities | ||
numpy | ||
scipy | ||
# summary plot generation | ||
matplotlib | ||
seaborn | ||
# PDF generation | ||
pdfrw | ||
reportlab | ||
Wand | ||
Pillow # also scan processing | ||
# Scan processing | ||
opencv-python | ||
git+https://github.com/mstamy2/PyPDF2 | ||
pylibdmtx | ||
# Exporting | ||
pandas | ||
openpyxl # required for writing dataframes as Excel spreadsheets |
Please register or sign in to comment