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
|
# conda environment file for python 3, includes packages needed for testing
# and building the sphinx docs
# create a conda virtual env using:
# conda env create -n myenv --file conda_environment.yml
# source activate myenv (use 'activate myenv' on windows)
# python setup.py develop
#
# optionally run tests:
# python setup.py test
name: ulmo
channels:
- conda-forge
- defaults
dependencies:
- python>=3.5
- appdirs
- beautifulsoup4
- future
- geojson
- isodate
- lxml
- numpy
- pandas
# - pytables
- requests
- suds-jurko
# Specifically for building Sphinx docs
- python-dateutil
- numpydoc
- sphinx
# test dependencies
- pip
- coveralls
- freezegun
- html5lib
- mock
- pytest
- pytest-cov
- pytest-runner
- httpretty
|