-
Notifications
You must be signed in to change notification settings - Fork 2
/
environment.devenv.yml
66 lines (58 loc) · 1.23 KB
/
environment.devenv.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#
# Conda devenv environment for pado
#
# Create the environment, do not install pado in development mode:
# conda devenv
# equivalent to:
# PADO_DEVEL="" conda devenv
# Create the environment, install pado in development mode:
# PADO_DEVEL=TRUE conda devenv
#
{% set PADO_DEVEL = os.environ.get('PADO_DEVEL', False) %}
{% set PADO_DEVEL_CI = os.environ.get('PADO_DEVEL_CI', False) %}
name: pado
channels:
- conda-forge
dependencies:
# python relevant things
- python>=3.7
- pip
- typing_extensions
- importlib_resources
- setuptools_scm
# pado requirements
- dynaconf
- fsspec
- aiohttp
- geojson-pydantic
- imagecodecs
- itsdangerous
- numpy
- orjson
- opencv
- pandas
- pillow
- platformdirs
- pyarrow
- pydantic
- rich
- requests
- shapely
- tifffile>=2021.6.6
- tiffslide>=1.0.0
- typer
- toml
- tqdm
- zarr
# testing relevant things
- pytest>=6
- pytest-cov
# dev tools
- pre_commit # [ PADO_DEVEL ]
- sphinx # [ PADO_DEVEL ]
# pip installs
- pip: # [ PADO_DEVEL or PADO_DEVEL_CI ]
- sphinxemoji # [ PADO_DEVEL ]
- sphinx_autodoc_typehints # [ PADO_DEVEL ]
- sphinx_rtd_theme # [ PADO_DEVEL ]
- "-e ." # [ PADO_DEVEL or PADO_DEVEL_CI ]