-
Notifications
You must be signed in to change notification settings - Fork 3
/
environment.yml
68 lines (55 loc) · 1.07 KB
/
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
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
67
68
name: compass-interface
channels:
- conda-forge
dependencies:
- python>=3.9
- pip
# For web requests
- httpx>=0.20
# For parsing results
- lxml
# Type validation
- pydantic>=1.8.2
- email-validator>=1.1.0
#- phonenumberslite # not on conda (2021-03-20)
# compass-interface Utilities
- numba>0.52 # JIT compilation
- pandas # data transformation
- pyarrow # .feather format
# API
- fastapi>=0.65.1 # API framework
# API - Auth
- authlib
- python-jose # JSON Web Tokens
- python-multipart # Form Data (OAuth2)
- cryptography # Encryption
# Deployment
- uvicorn
#- gunicorn # *NIX only, no windows support
# Testing
- hypothesis
- pytest
- starlette
- uvicorn
# Development
- ipython
#- dtale
# Linting
- black
- isort>=5
- pre-commit
- pylint
- flake8
- pep8-naming
- pydocstyle
- bandit
#- pyroma (outdated on CF as at 2021-09-24)
- mypy
- lxml-stubs
# Build
- build # PyPA build package
- pip:
# Type validation
- phonenumberslite
# Linting
- pyroma