2020-07-05 01:04:55 +02:00
|
|
|
# this file specifies what the suitable conda environment for this
|
|
|
|
# project looks like
|
|
|
|
name: moneyusage
|
|
|
|
# channels:
|
|
|
|
# - conda-forge
|
|
|
|
dependencies:
|
2020-07-07 09:27:46 +02:00
|
|
|
- python=3.8
|
2020-07-07 14:04:07 +02:00
|
|
|
- autopep8
|
2020-07-05 01:04:55 +02:00
|
|
|
- pytest
|
2020-07-06 14:44:35 +02:00
|
|
|
- pylint
|
2020-08-04 16:42:01 +02:00
|
|
|
- rope # for refactoring
|
2020-08-04 13:34:15 +02:00
|
|
|
- mypy # static type checker, since pylint is not so great at that
|
2020-10-07 22:01:31 +02:00
|
|
|
- matplotlib
|
2020-07-06 14:44:35 +02:00
|
|
|
- sphinx
|
2020-07-14 18:21:47 +02:00
|
|
|
- SQLAlchemy-Utils>=0.31
|
|
|
|
- SQLAlchemy>=1.0
|
2020-12-09 14:36:29 +01:00
|
|
|
- coverage
|
2020-08-04 13:34:58 +02:00
|
|
|
- pip
|
2020-07-23 21:16:16 +02:00
|
|
|
# packages to be installed via pip:
|
|
|
|
- pip:
|
|
|
|
- piecash # and some version check removal, see README.md
|
2020-08-04 13:35:09 +02:00
|
|
|
- sphinx_autodoc_typehints
|
2020-07-23 21:16:16 +02:00
|
|
|
- --editable .
|