Files
omnibot22/Pipfile
Alek Ratzloff 78a4c5558d Update README and add aiohttp dependency
aiohttp has a weird issue when installing with pipenv. A workaround is
added in the README.md to at least cover that case when it comes time to
deploy on a real server.

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
2022-05-23 19:38:21 -07:00

21 lines
312 B
TOML

[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
async-irc = "*"
toml = {version="*", markers="python_version < '3.11'"}
types-toml = "*"
"aiohttp[speedups]" = "*"
[dev-packages]
mypy = "*"
black = "*"
[requires]
python_version = "3.10"
[pipenv]
allow_prereleases = true