forked from the-scouts/compass-interface-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment.yml
40 lines (34 loc) · 937 Bytes
/
environment.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
name: compass-interface-core
channels:
- conda-forge
- defaults
dependencies:
- python>=3.9
- pip
# For web requests & certificates
- requests
- certifi
# For parsing results
- lxml
# Type validation
- pydantic
- email-validator
- phonenumbers # phonenumberslite?
# Testing
- pytest
# Development (Tools, Style, Linting)
- ipython
- black
- isort
# - prospector
# prospector currently pins to pylint==2.5.3, which itself pins to isort<5.
# To use isort>=5.0.0, we must use pylint>=2.6.0, and wait for prospector to update.
# Current as at 20-01-2021
- pre-commit
- virtualenv==20.0.33 # Solve regression, see
# https://github.com/ContinuumIO/anaconda-issues/issues/12094
# https://github.com/pypa/virtualenv/issues/1986
# https://github.com/pre-commit/pre-commit/issues/1675
- pip:
# Build
- build # PyPA build package (not on conda 04/01/21)