3 Commits
1.1.4 ... 1.1.5

Author SHA1 Message Date
401d8a36bf change README.md 2021-03-10 19:47:52 +01:00
314796f593 add BeautifulSoup to dependencies 2021-03-10 19:45:58 +01:00
b670aa3eec change version to 1.1.5 2021-03-10 19:43:47 +01:00
3 changed files with 3 additions and 2 deletions

View File

@@ -8,6 +8,7 @@ The basic idea is to define rules with conditions and actions which are processe
Pymodmilter is depending on these python packages, but they are installed automatically if you are working with pip.
* [pymilter](https://pythonhosted.org/pymilter/)
* [netaddr](https://github.com/drkjam/netaddr/)
* [BeautifulSoup](https://www.crummy.com/software/BeautifulSoup/)
## Installation
* Install pymodmilter with pip and copy the example config file.

View File

@@ -21,7 +21,7 @@ __all__ = [
"ModifyMilterConfig",
"ModifyMilter"]
__version__ = "1.1.4"
__version__ = "1.1.5"
from pymodmilter import _runtime_patches

View File

@@ -46,6 +46,6 @@ setup(name = "pymodmilter",
]
)
],
install_requires = ["pymilter", "netaddr"],
install_requires = ["pymilter", "netaddr", "beautifulsoup4[lxml]"],
python_requires = ">=3.6"
)