forked from chmarr/artshow-jockey
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPipfile
38 lines (34 loc) · 809 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
38
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[packages]
django = "==5.1.*"
django-ajax-selects = "*"
django-appconf = "*"
django-celery-results = "*"
django-formtools = "*"
django-ses = "*"
gunicorn = "*"
"num2words" = "*"
pdfrw = "*"
reportlab = "*"
requests = "*"
requests-oauthlib = "*"
psycopg = {extras = ["binary"],version = "*"}
supervisor = "*"
environs = {extras = ["django"],version = "*"}
celery = {extras = ["sqs"],version = "*"}
squareup = "*"
[dev-packages]
"django-debug-toolbar" = "*"
"flake8" = "*"
oauthlib = "*"
[requires]
python_version = "3.12"
[scripts]
gunicorn = "gunicorn wsgi"
server = "python manage.py runserver"
migrate = "python manage.py migrate"
collectstatic = "python manage.py collectstatic --noinput"
test = "python manage.py test"