Use a name when installing with -e

main
Jonathan Sundqvist 3 years ago
parent 85e947acc8
commit d1d89794d5
  1. 1
      pelican/plugins/obsidian/obsidian.py
  2. 1
      pyproject.toml
  3. 2
      setup.py

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

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

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

Loading…
Cancel
Save