-
Notifications
You must be signed in to change notification settings - Fork 4
/
Pipfile
114 lines (110 loc) · 2.69 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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
aioredis = "==1.3.1"
asgiref = "==3.5.0"
async-generator = "==1.10"
async-timeout = "==4.0.2"
atomicwrites = "==1.4.0"
attrs = "==21.4.0"
autobahn = "==22.2.2"
automat = "==20.2.0"
"backports.zoneinfo" = "==0.2.1"
beautifulsoup4 = "==4.10.0"
black = "==22.1.0"
boto3 = "==1.21.26"
botocore = "==1.24.26"
bs4 = "==0.0.1"
certifi = "==2021.10.8"
cffi = "==1.15.0"
channels = "==3.0.4"
channels-redis = "==3.4.0"
charset-normalizer = "==2.0.12"
click = "==8.0.4"
colorama = "==0.4.4"
constantly = "==15.1.0"
cryptography = "==36.0.2"
daphne = "==3.0.2"
distlib = "==0.3.4"
django = "==4.0.2"
django-ninja = "==0.17.0"
django-storages = "==1.12.3"
filelock = "==3.6.0"
gunicorn = "==20.0.4"
h11 = "==0.13.0"
hiredis = "==2.0.0"
hyperlink = "==21.0.0"
idna = "==3.3"
incremental = "==21.3.0"
iniconfig = "==1.1.1"
isort = "==5.10.1"
jmespath = "==1.0.0"
msgpack = "==1.0.3"
mysqlclient = "==2.1.0"
outcome = "==1.1.0"
packaging = "==21.3"
pathspec = "==0.9.0"
pillow = "==9.0.1"
platformdirs = "==2.5.1"
pluggy = "==1.0.0"
py = "==1.11.0"
pyasn1 = "==0.4.8"
pyasn1-modules = "==0.2.8"
pycparser = "==2.21"
pydantic = "==1.9.0"
pymysql = "==1.0.2"
pyopenssl = "==22.0.0"
pyparsing = "==3.0.7"
pysocks = "==1.7.1"
pytest = "==7.1.1"
pytest-django = "==4.5.2"
python-dateutil = "==2.8.2"
requests = "==2.27.1"
s3transfer = "==0.5.2"
selenium = "==4.1.3"
service-identity = "==21.1.0"
six = "==1.16.0"
sniffio = "==1.2.0"
sortedcontainers = "==2.4.0"
soupsieve = "==2.3.1"
sqlparse = "==0.4.2"
supervisor = "==4.2.4"
trio = "==0.20.0"
trio-websocket = "==0.9.2"
twisted = "==22.2.0"
txaio = "==22.2.1"
types-pymysql = "==1.0.6"
types-pytz = "==2021.3.6"
types-pyyaml = "==6.0.5"
typing-extensions = "==4.1.1"
tzdata = "==2022.1"
urllib3 = "==1.26.9"
virtualenv = "==20.14.0"
wsproto = "==1.1.0"
"zope.interface" = "==5.4.0"
flake8 = "*"
pre-commit = "*"
gensim = "*"
djangorestframework = "*"
djangorestframework-simplejwt = "*"
python-dotenv = "*"
django-extensions = "*"
factory-boy = "*"
pytest-mock = "*"
celery = {extras = ["redis"], version = "*"}
pytest-celery = "*"
django-redis = "*"
numpy = "*"
[dev-packages]
[requires]
python_version = "3.8"
python_full_version = "3.8.10"
[scripts]
shell_prod = "python manage.py shell_plus --settings=alaltalk.settings.prod"
shell_dev = "python manage.py shell_plus --settings=alaltalk.settings.dev"
makemigrations_prod = "python manage.py makemigrations --settings=alaltalk.settings.prod"
makemigrations_dev= "python manage.py makemigrations --settings=alaltalk.settings.dev"
migrate_prod = "python manage.py migrate --settings=alaltalk.settings.prod"
migrate_dev= "python manage.py migrate --settings=alaltalk.settings.dev"