Use a name when installing with -e

This commit is contained in:
Jonathan Sundqvist 2021-07-03 13:40:42 +02:00
parent 85e947acc8
commit d1d89794d5
3 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,6 @@
from pelican import signals
def pre_taxonomy(article_generator):
"""
Modify the tags of the article

View File

@ -37,7 +37,6 @@ line-length = 88
target_version = ['py36']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the

View File

@ -1,3 +1,3 @@
# setup.py
from setuptools import setup
setup(use_scm_version=True)
setup(name="pelican-obsidian", use_scm_version=True)