-
Notifications
You must be signed in to change notification settings - Fork 2
/
Pipfile
145 lines (143 loc) · 3.47 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
pywatchman = "*"
colour-runner = "==0.1.1"
ipython = "==8.11.0"
Werkzeug = "*"
# Code Quality
pydocstyle = "*"
isort = "*"
pylint = "*"
pylint-django = "*"
mypy = "==0.931"
django-stubs = "==1.10.1"
djangorestframework-stubs = "*"
types-pytz = "*"
types-bleach = "*"
types-python-dateutil = "*"
types-requests = "2.28.11.16"
# Coverage
coverage = "*"
django-coverage = "==1.2.4"
# Debug
ipdb = "*"
pdbpp = "==0.10.3"
django-debug-toolbar = "==3.2.2"
django-debug-toolbar-template-timings = "==0.9"
djdt_flamegraph = "*"
django-extensions = "*"
# Parsing
beautifulsoup4 = "*"
# Fixtures
testfixtures = "*"
factory_boy = "==3.2.1"
# Test framework
pytest = "==6.2.5"
pytest-django = "*"
pytest-cov = "*"
pytest-xdist = "*"
pytest-mock = "*"
pytest-pythonpath = "*"
[packages]
# Core
pytz = "*"
Django = "==3.2.18"
django-environ = "==0.8.1"
rules = "*"
# DB
psycopg2-binary = "==2.9.3"
django-prettyjson = "==0.4.1"
# Images
sorl-thumbnail = "==12.8.0"
python-magic = "==0.4.25"
Pillow = "==9.4.0"
# Forms
django-crispy-forms = "==1.14.0"
# i18n/l10n
django-rosetta = "*"
django-modeltranslation = "==0.17.5"
babel = "*"
# AWS
boto3 = "*"
boto = "*"
# Event messages verification for AWS SNS
M2Crypto = "==0.38.0"
# Mailing
django-ses = "==2.6.1"
django-post_office = "==3.6.0"
# Markdown
hoep = "*"
# Monitoring
sentry-sdk = "*"
# Oauth2
social-auth-core = "==4.2.0"
social-auth-app-django = "==5.0.0"
# Task manager
rq = "==1.10.1"
django-rq = "==2.5.1"
# Lock on 0.11. Update it later. https://github.com/rq/rq-scheduler/issues/286
rq-scheduler = "==0.11"
# Security
bleach = "==4.1.0"
cryptography = "*"
# API
djangorestframework = "==3.13.1"
rest-pandas = "==1.1.0"
# Misc
django-admin-env-notice = "==1.0" # https://github.com/dizballanze/django-admin-env-notice
python-json-logger = "*"
requests = "==2.27.1"
django-model-utils = "==4.2.0"
django-storages = "==1.12.3"
django-import-export = "==2.7.1"
tablib = "==3.2.0"
nbconvert = "==6.5.4"
django-js-reverse = "==0.9.1"
numpy = "==1.22.3"
icalendar = "==4.0.9"
django-ical = "==1.8.3"
python-dateutil = "==2.8.2"
Django-jinja = "==2.10.0"
python-ldap = "==3.4.0"
attrs = "==21.4.0"
django-choices = "==1.7.2"
django-vanilla-views = "==3.0.0"
django-autocomplete-light = "==3.9.4"
django-mptt = "==0.13.4"
django-bootstrap-pagination = "==1.7.1"
django-bitfield = "==2.1.0"
django-multiselectfield = "==0.1.12"
django-filter = "==2.4.0"
hashids = "==1.3.1"
django-recaptcha = "==3.0.0"
django-registration-redux = "==2.9"
django-fixture-media = "==0.1.4"
django-annoying = "==0.10.6"
django-extra-views = "==0.14.0"
django-braces = "==1.15.0"
django-taggit = "==2.1.0"
sqlparse = "==0.4.2"
django-loginas = "==0.3.10"
# Cannot be updated until this issue is resolved https://github.com/django-webpack/webpack-bundle-tracker/issues/63
django-webpack-loader = "==1.4.1"
XlsxWriter = "==3.0.3"
# FIXME: it's nbconvert dependency remove?
jupyter_client = "==7.1.2"
isoweek = "*"
django-simple-menu = "*"
# XXX: UI problems with ckeditor widget in 6.0.0 release
django-ckeditor = "==5.9.0"
django-simple-history = "*"
# XXX: wrong implementation for Django >= 1.11
django-static-compress = "==2.0.0"
webdavclient3 = "*"
djangorestframework-camel-case = "*"
# FIXME: pylint 2.12.2 possibly conflicting dependencies found: astroid==2.9.3, wrapt [required: >=1.11,<1.14, installed: 1.14.0]
# remove after new pyling version release
wrapt = "==1.13.3"
lxml_html_clean = "==0.3.1"
[requires]
python_version = "3.10"