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>
21 lines
312 B
TOML
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
|