-
Notifications
You must be signed in to change notification settings - Fork 67
/
Pipfile
50 lines (48 loc) · 916 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
39
40
41
42
43
44
45
46
47
48
49
50
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[packages]
aiohttp = "*"
appdirs = "*"
boltons = "*"
blessings = "*"
dataclasses = "==0.6"
diskcache = "*"
google-api-python-client = "*"
google-auth-oauthlib = "*"
importlib-resources = "*"
jinja2 = "*"
packaging = "==23.*"
python-dateutil = "*"
pyyaml = "*"
ratelimit = "*"
six = "==1.15.0"
# Python 3.7 compatibility
typing-extensions = "*"
# Python 3.9 compatibility
exceptiongroup = "*"
beautifulsoup4 = "*"
async-timeout = "*"
bs4 = "*"
[dev-packages]
astunparse = "*"
bump2version = "*"
coverage = "*"
dnspython = "*"
importlib-metadata = "*"
isort = "==5.12.0"
mypy = "*"
pdoc = "*"
pre-commit = "*"
pyinstaller = "*"
pytest = "*"
pytest-cov = "*"
pytest-forked = "*"
pytest-snapshot = "*"
yapf = "*"
pylint = "*"
# for vim:
# pip install 'python-language-server[yapf,pyflakes,mccabe]'
types-pyyaml = "*"
cookiecutter = "*"