-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
37 lines (35 loc) · 836 Bytes
/
Pipfile
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
django = "*"
psycopg2-binary = "*"
djangorestframework = "*"
pyyaml = "*"
uritemplate = "*"
selenium = "*"
django-filter = "*"
gunicorn = "*"
whitenoise = "*"
django-cors-headers = "*"
unidecode = "*"
bs4 = "*"
html5lib = "*"
requests = "*"
numpy = "*"
hiredis = "*"
redis = "*"
isort = "*"
black = "*"
inflection = "*"
[scripts]
dev = "python src/manage.py runserver"
scrape-sections = "python src/manage.py scrape --quick sections"
shell = "python src/manage.py shell"
scrape-courses = "python src/manage.py scrape courses"
scrape = "python src/manage.py scrape"
makemigrations = "python src/manage.py makemigrations"
migrate = "python src/manage.py migrate"
fix = "python src/manage.py fix"
format = "sh -c 'isort --profile black . && black .'"