-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
50 lines (46 loc) · 1.03 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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
loguru = "*"
apscheduler = "*"
fastapi = "*"
aiokafka = "*"
aerich = "*"
asyncpg = "*"
alembic = "*"
uvicorn = "*"
aiohttp = "==3.8.1"
sqlalchemy = {extras = ["asyncio"], version = "*"}
psycopg2-binary = "*"
[dev-packages]
# for mypy checking (python 3.4+ is needed)
pyls-mypy="*"
# pyls-isort Isort import sort code formatting
pyls-isort="*"
# pyls-black for code formatting using Black
pyls-black=">=0.4.6"
# other python related emacs staff ====
autopep8 = "==1.5.5"
autoflake = "*"
flake8 = "==3.8.4"
# Install importmagic and epc for importmagic functionality. ===
epc = "*"
importmagic = "*"
# dap-mode debugger (only for lsp backend) ===
ptvsd = ">=4.2"
# probably unnecessary python emacs staff ====
isort = "*"
mypy = "*"
python-language-server = {extras = ["all"],version = "*"}
black = "==22.3.0"
pytest = "*"
pytest-asyncio = "*"
python-dotenv = "*"
factory-boy = "*"
aiosqlite = "*"
[requires]
python_version = "3.9"
[pipenv]
allow_prereleases = true