diff options
-rw-r--r-- | setup.cfg | 4 | ||||
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | src/blimp/main.py | 1 |
3 files changed, 3 insertions, 4 deletions
@@ -1,5 +1,5 @@ [metadata] -name = blimp +name = bl-imp version = attr: blimp.__version__ url = https://github.com/mightyBroccoli/blacklist_importer licence = GPLv3 @@ -31,7 +31,7 @@ where = src [options.entry_points] console_scripts = - blimp = blimp.cli:cli + bl-imp = blimp.cli:cli [tool:pytest] testpaths = tests @@ -2,7 +2,7 @@ from setuptools import setup setup( - name="Blimp", + name="bl-imp", install_requires=[ "appdirs>=1.4", "requests>=2.25", diff --git a/src/blimp/main.py b/src/blimp/main.py index 93fdc29..1d0c29b 100644 --- a/src/blimp/main.py +++ b/src/blimp/main.py @@ -17,7 +17,6 @@ class Blimp: self.path = Path(user_cache_dir("blimp")) self.url = "https://raw.githubusercontent.com/JabberSPAM/blacklist/master/blacklist.txt" self.blacklist = "" - self.apply_changes = False self.etag_path = self.path.joinpath(".etag") self.blacklist_path = self.path.joinpath("blacklist.txt") |