-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment.yml
More file actions
45 lines (37 loc) · 893 Bytes
/
environment.yml
File metadata and controls
45 lines (37 loc) · 893 Bytes
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 Definition
# ==============================
# Create: conda env create -f environment.yml
# Activate: conda activate restaurant-sentiment
# Update: conda env update -f environment.yml --prune
#
# For pip-only users, use: pip install -r requirements.txt
name: restaurant-sentiment
channels:
- defaults
- conda-forge
dependencies:
- python=3.11
- pip
# Data science
- numpy>=1.26.0
- scipy>=1.14.0
- scikit-learn>=1.6.0
- pandas>=2.2.0
- matplotlib>=3.9.0
# NLP
- nltk>=3.9.0
# Node.js for frontend build
- nodejs=20
- pip:
# Web framework
- fastapi>=0.115.0
- uvicorn[standard]>=0.32.0
- python-multipart>=0.0.18
# Templating & security
- jinja2>=3.1.5
- itsdangerous>=2.2.0
# Testing
- pytest>=8.0.0
- pytest-asyncio>=0.24.0
- pytest-cov>=5.0.0
- httpx>=0.27.0