-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrequirements.txt
79 lines (46 loc) · 1.52 KB
/
requirements.txt
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
69
70
71
72
73
74
75
76
77
78
79
-f https://download.pytorch.org/whl/torch_stable.html
torch==1.8.1+cpu; platform_system == "Linux"
torchvision==0.9.1+cpu; platform_system == "Linux"
# https://www.python.org/dev/peps/pep-0508/#environment-markers
# on heroku, use the smaller deps above, else use the full deps below on Mac (Darwin) / Windows
torch==1.8.1; platform_system != "Linux"
torchvision==0.9.1; platform_system != "Linux"
# this won't install on heroku (too big, run locally only)
# see: https://github.com/unitaryai/detoxify/issues/19
#detoxify; platform_system != "Linux"
#git+https://github.com/s2t2/detoxify.git@fix; platform_system != "Linux"
git+https://github.com/unitaryai/detoxify.git; platform_system != "Linux"
python-dotenv # a.k.a. dotenv, for reading environment vars from the ".env" file
tweepy==3.10.0
#twint # for unoficially interfacing with twitter data
beautifulsoup4 # for scraping mobile Twitter site
google-cloud-bigquery # for interfacing with the BigQuery API
google-cloud-storage # for interfacing with Google Cloud Storage
sendgrid==6.0.5
# mpi4py # errors installing on heroku?
# psycopg2 (OPTIONAL)
sqlalchemy
# temporarily commenting-out some of these packages to get the heroku build size small enough
pandas
#networkx
#numpy
#scipy
scikit-learn
#nltk
#spacy
#gensim
#basilica
transformers==4.8.2
botometer==1.6.1
#matplotlib
#plotly
#kaleido # required by plotly to save static images
#squarify
Flask
gunicorn
flask-cors
# formerly known as dev dependencies:
pytest
memory_profiler
# dev dependencies:
#autopep8