From 4479031fe5807ebb6a73fc33edba53fbf4052b83 Mon Sep 17 00:00:00 2001 From: Ben Steffen Date: Sat, 7 Dec 2019 15:25:46 -0500 Subject: [PATCH] Update setup.py --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 60c1c8c..92e05c2 100755 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/python3 from os import path from debian_bundle.changelog import Changelog @@ -19,7 +19,7 @@ setup( maintainer=maintainer, maintainer_email=maintainer_full, - packages = find_packages('python'), - package_dir = {'': 'python'}, + packages=find_packages('python'), + package_dir={'': 'python'}, scripts=glob('scripts/*') ) -- 1.7.9.5