3
0
mirror of https://github.com/jlu5/PyLink.git synced 2025-01-12 13:12:36 +01:00

README, setup.py: drop ircmatch dependency (#636)

This commit is contained in:
James Lu 2019-06-21 12:49:09 -07:00
parent 74566c3aab
commit a6205e1ebc
2 changed files with 1 additions and 2 deletions

View File

@ -42,7 +42,6 @@ If you are a developer and want to help make PyLink more portable, patches are w
* Setuptools (`pip3 install setuptools`)
* PyYAML (`pip3 install pyyaml`)
* ircmatch (`pip3 install ircmatch`)
* *For hashed password support*: Passlib >= 1.7.0 (`pip3 install passlib`)
* *For better PID file tracking (i.e. removing stale PID files after a crash)*: psutil (`pip3 install psutil`)
* *For the servprotect plugin*: cachetools (`pip3 install cachetools`)

View File

@ -82,7 +82,7 @@ setup(
],
keywords='IRC services relay',
install_requires=['pyyaml', 'ircmatch'],
install_requires=['pyyaml'],
extras_require={
'password-hashing': ['passlib>=1.7.0'],