-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment.yml
37 lines (35 loc) · 1.31 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
name: data_cleanup_env
channels:
- defaults
- conda-forge
dependencies:
- python
- pandas # for data analysis and manipulation (standard feature)
- dash # for table manipulation
- pip
- pip:
- dash-mantine-components
- dash[diskcache]
- dash_iconify
- openpyxl # unused
- lxml # unused
- xlsxwriter # unused
- pytest
- diskcache
# - numpy # for scientific computing (standard feature) [maybe]
# - pyscss # for scss to css conversion
# - matplotlib # for plotting and visualization (bonus feature)
# - flask # for web development (standard feature)
# - flask-assets # to manage web assets (standard feature)
# - beautifulsoup4 # for parsing html and xml files (standard feature)
# - re # for regular expressions (standard feature) [this is a pythons standard module]
# - fuzzywuzzy # for fuzzy string matching (standard feature)
# - python-dateutil # for parsing dates (standard feature)
#* to create the environment, run the following command in the terminal:
#* conda env create -f environment.yml
#* to update the environment, run the following command in the terminal:
#* conda env update -f environment.yml
#* or
#* conda env update --prune -f environment.yml
#* to activate the environment, run the following command in the terminal:
#* conda activate data_cleanup_env