From b2e82c8bfcaaea93c7c7c4cdc05b7f62ff76c90c Mon Sep 17 00:00:00 2001 From: Munyoki Kilyungi Date: Mon, 4 Mar 2024 12:24:13 +0300 Subject: setup.py: Fix pylint errors. Signed-off-by: Munyoki Kilyungi --- setup.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 10848df..023c2a2 100755 --- a/setup.py +++ b/setup.py @@ -1,9 +1,7 @@ #!/usr/bin/env python """Setup script for GeneNetwork Auth package.""" -import glob -from pathlib import Path -from setup_commands import RunTests from setuptools import setup, find_packages +from setup_commands import RunTests LONG_DESCRIPTION = """ gn-auth project is the authentication/authorisation server to be used @@ -46,5 +44,5 @@ setup(author="Frederick M. Muriithi", version="0.0.1", tests_require=["pytest", "hypothesis"], cmdclass={ - "run_tests": RunTests ## testing + "run_tests": RunTests # testing }) -- cgit v1.2.3