diff options
| author | 2020-09-27 08:23:18 +0300 | |
|---|---|---|
| committer | 2020-09-27 08:23:18 +0300 | |
| commit | 7dd11246a3cd7c4888ae1d38ed820301b06ce547 (patch) | |
| tree | 390b01476727acdf69d4195761882207cec23c68 /Pipfile | |
| parent | EH Tests: Create test for `handle_unexpected_error` (diff) | |
| parent | Merge pull request #1161 from bast0006/feature-bast-user-token-notify (diff) | |
Merge remote-tracking branch 'upstream/master' into error-handler-test
Diffstat (limited to 'Pipfile')
| -rw-r--r-- | Pipfile | 30 | 
1 files changed, 17 insertions, 13 deletions
@@ -4,29 +4,32 @@ verify_ssl = true  name = "pypi"  [packages] -discord-py = "~=1.3.2" +aio-pika = "~=6.1"  aiodns = "~=2.0"  aiohttp = "~=3.5" -sphinx = "~=2.2" -markdownify = "~=0.4" -lxml = "~=4.4" -pyyaml = "~=5.1" +aioping = "~=0.3.1" +aioredis = "~=1.3.1" +"async-rediscache[fakeredis]" = "~=0.1.2" +beautifulsoup4 = "~=4.9" +colorama = {version = "~=0.4.3",sys_platform = "== 'win32'"} +coloredlogs = "~=14.0" +deepdiff = "~=4.0" +discord.py = "~=1.4.0" +feedparser = "~=5.2"  fuzzywuzzy = "~=0.17" -aio-pika = "~=6.1" +lxml = "~=4.4" +markdownify = "~=0.4" +more_itertools = "~=8.2"  python-dateutil = "~=2.8" -deepdiff = "~=4.0" +pyyaml = "~=5.1"  requests = "~=2.22" -more_itertools = "~=8.2"  sentry-sdk = "~=0.14" -coloredlogs = "~=14.0" -colorama = {version = "~=0.4.3",sys_platform = "== 'win32'"} +sphinx = "~=2.2"  statsd = "~=3.3" -feedparser = "~=5.2" -beautifulsoup4 = "~=4.9"  [dev-packages]  coverage = "~=5.0" -flake8 = "~=3.7" +flake8 = "~=3.8"  flake8-annotations = "~=2.0"  flake8-bugbear = "~=20.1"  flake8-docstrings = "~=1.4" @@ -48,4 +51,5 @@ precommit = "pre-commit install"  build = "docker build -t pythondiscord/bot:latest -f Dockerfile ."  push = "docker push pythondiscord/bot:latest"  test = "coverage run -m unittest" +html = "coverage html"  report = "coverage report"  |