23 lines
593 B
YAML
23 lines
593 B
YAML
# this file specifies what the suitable conda environment for this
|
|
# project looks like
|
|
name: moneyusage
|
|
# channels:
|
|
# - conda-forge
|
|
dependencies:
|
|
- python=3.8
|
|
- autopep8
|
|
- pytest
|
|
- pylint
|
|
- rope # for refactoring
|
|
- mypy # static type checker, since pylint is not so great at that
|
|
- matplotlib
|
|
- sphinx
|
|
- SQLAlchemy-Utils>=0.31
|
|
- SQLAlchemy>=1.0
|
|
- coverage
|
|
- pip
|
|
# packages to be installed via pip:
|
|
- pip:
|
|
- piecash # and some version check removal, see README.md
|
|
- sphinx_autodoc_typehints
|
|
- --editable .
|