File: conda_environment.yml

package info (click to toggle)
python-ulmo 0.8.8%2Bdfsg1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,064 kB
  • sloc: python: 6,135; makefile: 144; sh: 5
file content (45 lines) | stat: -rw-r--r-- 844 bytes parent folder | download | duplicates (2)
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