Commit 56c7b457ec049f8727626169891e3895a11ee067
1 parent
4b99f7ee
Exists in
master
Prepare support for CSV abd XLS file upload.
Showing
2 changed files
with
11 additions
and
0 deletions
Show diff stats
README.md
@@ -39,3 +39,6 @@ Then, visit http://localhost:5000 | @@ -39,3 +39,6 @@ Then, visit http://localhost:5000 | ||
39 | > We're trying to remove the need for the `export` statements, but… | 39 | > We're trying to remove the need for the `export` statements, but… |
40 | 40 | ||
41 | 41 | ||
42 | +## Build CSS and JS for prod | ||
43 | + | ||
44 | + flask assets build |
requirements.txt
@@ -22,6 +22,14 @@ enum34==1.1.6 | @@ -22,6 +22,14 @@ enum34==1.1.6 | ||
22 | geopy==1.20.0 | 22 | geopy==1.20.0 |
23 | python-dotenv==0.10.3 | 23 | python-dotenv==0.10.3 |
24 | 24 | ||
25 | +# Spreadsheet reading | ||
26 | +# Note that 0.24 is the most recent version still supporting python 2.7 | ||
27 | +pandas==0.24.2 | ||
28 | +# Excel support for wisdom-impaired Microsoft users | ||
29 | +xlrd==1.2.0 | ||
30 | +# ODS reading support is only available natively in 0.25 | ||
31 | +# pandas_ods_reader | ||
32 | + | ||
25 | # Testing | 33 | # Testing |
26 | pytest==3.0.5 | 34 | pytest==3.0.5 |
27 | pytest-cov==2.4.0 | 35 | pytest-cov==2.4.0 |