From 2d73d525b8b63aec22e801dc2ef8d62ae21c93ee Mon Sep 17 00:00:00 2001 From: Thomas Oettli Date: Wed, 22 Apr 2020 21:51:02 +0200 Subject: [PATCH] fix setup.py and release 0.0.9 --- README.md | 6 +++--- pymodmilter/version.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0a85ac0..29dd483 100644 --- a/README.md +++ b/README.md @@ -14,11 +14,11 @@ Pymodmilter is depending on these python packages, but they are installed automa ```sh pip install pymodmilter ``` -* Download the example config file. +* Copy the example configuration file. ```sh -curl https://raw.githubusercontent.com/spacefreak86/pymodmilter/master/docs/pymodmilter.conf.example --output /etc/pymodmilter.conf +cp /usr/share/doc/pymodmilter/pymodmilter.conf.example /etc/pymodmilter.conf ``` -* Modify pymodmilter.conf according to your needs and you are ready to go. +* Modify /etc/pymodmilter.conf according to your needs and you are ready to go. ## Configuration options Pymodmilter uses a configuration file in JSON format. The options are described below. Make a copy of the [example configuration file](https://github.com/spacefreak86/pymodmilter/blob/master/docs/pymodmilter.conf.example) in the [docs](https://github.com/spacefreak86/pymodmilter/tree/master/docs) folder to start with. diff --git a/pymodmilter/version.py b/pymodmilter/version.py index a73339b..00ec2dc 100644 --- a/pymodmilter/version.py +++ b/pymodmilter/version.py @@ -1 +1 @@ -__version__ = "0.0.8" +__version__ = "0.0.9" diff --git a/setup.py b/setup.py index 45fff62..1459663 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ setup(name = "pymodmilter", }, data_files = [ ( - 'usr/share/docs/', + 'usr/share/doc/pymodmilter', [ 'docs/pymodmilter.conf.example' ]