1
0
Fork 0

Update readme. Remove automatic installation of levenshtein for fuzzywuzzy.

This commit is contained in:
Casper V. Kristensen 2018-07-31 17:49:26 +02:00
parent 670dac5c1b
commit 3e8447f492
Signed by: caspervk
GPG key ID: B1156723DB3BDDA8
2 changed files with 5 additions and 3 deletions

View file

@ -1,4 +1,4 @@
# Daily Releases: *A reddit bot that consolidates scene releases* # Daily Releases
## Quick Start ## Quick Start
### Installation ### Installation
@ -10,11 +10,13 @@ pip3 install --upgrade https://git.caspervk.net/caspervk/dailyreleases/archive/m
**It requires Python 3.6 or later.** **It requires Python 3.6 or later.**
To speed up fuzzy string matching, it may be desirable to install `python3-levenshtein`.
### Usage ### Usage
The program can be started by running `dailyreleases` or `python3 -m dailyreleases` depending on system configuration. The program can be started by running `dailyreleases` or `python3 -m dailyreleases` depending on system configuration.
### Configuration ### Configuration
The default configuration file will be copied to `~/.dailyreleases/config.ini` on the first run. All fields under the The default configuration file will be copied to `~/.dailyreleases/config.ini` on the first run. All fields under the
[reddit] and [google] sections need to be filled out before the bot can be initialized. `[reddit]` and `[google]` sections need to be filled out before the bot can be initialized.
To append content to the generated post, add a file `~/.dailyreleases/epilogue.txt`. To append content to the generated post, add a file `~/.dailyreleases/epilogue.txt`.

View file

@ -42,7 +42,7 @@ setup(
"praw", "praw",
"beautifulsoup4", "beautifulsoup4",
"tabulate", "tabulate",
"fuzzywuzzy[speedup]" "fuzzywuzzy"
], ],
entry_points={ entry_points={
"console_scripts": [ "console_scripts": [