From d1d89794d5fededc72d32733413b860aea02a902 Mon Sep 17 00:00:00 2001 From: Jonathan Sundqvist Date: Sat, 3 Jul 2021 13:40:42 +0200 Subject: [PATCH] Use a name when installing with -e --- pelican/plugins/obsidian/obsidian.py | 1 + pyproject.toml | 1 - setup.py | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pelican/plugins/obsidian/obsidian.py b/pelican/plugins/obsidian/obsidian.py index 1007c80..19f4aae 100644 --- a/pelican/plugins/obsidian/obsidian.py +++ b/pelican/plugins/obsidian/obsidian.py @@ -1,5 +1,6 @@ from pelican import signals + def pre_taxonomy(article_generator): """ Modify the tags of the article diff --git a/pyproject.toml b/pyproject.toml index 325bca7..288db33 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,6 @@ line-length = 88 target_version = ['py36'] include = '\.pyi?$' exclude = ''' - ( /( \.eggs # exclude a few common directories in the diff --git a/setup.py b/setup.py index 1fee7e0..c255e01 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,3 @@ # setup.py from setuptools import setup -setup(use_scm_version=True) +setup(name="pelican-obsidian", use_scm_version=True)