-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
55 lines (51 loc) · 1.21 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[scripts]
dev = "python manage.py runserver"
dbmigrate = "python manage.py migrate"
statics = "python manage.py collectstatic --noinput"
lint = "pylint --load-plugins pylint_django --django-settings-module=rollsocialnetwork.settings rollsocialnetwork"
check-typing = "mypy --config-file .mypy.ini -p rollsocialnetwork"
test = "python manage.py test"
coverage = "coverage run ./manage.py test"
coverage-xml = "coverage xml"
coverage-report = "coverage report"
[packages]
django = "*"
python-decouple = "*"
django-database-url = "*"
django-phonenumber-field = "*"
phonenumbers = "*"
twilio = "*"
pillow = "*"
easy-thumbnails = "*"
django-cors-headers = "*"
django-csp = "*"
channels = "*"
daphne = "*"
pyotp = "*"
whitenoise = "*"
django-oauth-toolkit = "*"
babel = "*"
geoip2 = "*"
social-auth-app-django = "*"
djangorestframework = "*"
[dev-packages]
pylint = "*"
pylint-django = "*"
mypy = "*"
django-types = "*"
types-dj-database-url = "*"
twilio-stubs = "*"
faker = "*"
coverage = "*"
faker-e164 = "*"
django-stubs = "*"
djangorestframework-stubs = "*"
pytest-django = "*"
types-oauthlib = "*"
[requires]
python_version = "3.12"
python_full_version = "3.12.3"