Skip to content

Commit

Permalink
refactor: linter fixes for flake8 in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
neilmunday committed Nov 20, 2023
1 parent e0c6070 commit fd263a7
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,18 @@

import pathlib
import sys
import setuptools # type: ignore
import setuptools # type: ignore

sys.path.append(str(pathlib.Path(__file__).resolve().parents[0] / "src"))

from slurmmail import ARCHITECTURE, DESCRIPTION, LONG_DESCRIPTION, MAINTAINER, NAME, VERSION # pylint: disable=wrong-import-position
from slurmmail import ( # noqa
ARCHITECTURE,
DESCRIPTION,
LONG_DESCRIPTION,
MAINTAINER,
NAME,
VERSION
)

setuptools.setup(
author='Neil Munday',
Expand All @@ -57,7 +64,7 @@
])
],
description=DESCRIPTION,
entry_points = {
entry_points={
'console_scripts': [
'slurm-send-mail=slurmmail.cli:send_mail_main',
'slurm-spool-mail=slurmmail.cli:spool_mail_main'
Expand Down

0 comments on commit fd263a7

Please sign in to comment.