Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/cygwin-apps/calm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2018-01-22 20:20:47 +0300
committerJon Turney <jon.turney@dronecode.org.uk>2018-01-22 20:20:47 +0300
commit2195b7aaff01701f258792b9ffe6eafbc3734217 (patch)
treeb518eb1567827a1e0f2c3653ba8906fdfa5a1ae7
parent2c01547b2f7e986903a70dbd05426d137a3d4a43 (diff)
Run pep8 on setup.py as well
-rwxr-xr-xpep82
-rw-r--r--setup.py3
2 files changed, 3 insertions, 2 deletions
diff --git a/pep8 b/pep8
index d4b8b7e..d501e84 100755
--- a/pep8
+++ b/pep8
@@ -1,2 +1,2 @@
#!/bin/sh
-grep -s -l '^#!/usr/bin/env python' calm/* test/* | xargs python3 -m pycodestyle --count --show-source --max-line-length=240 --ignore=E129,E741
+grep -s -l '^#!/usr/bin/env python' * calm/* test/* | xargs python3 -m pycodestyle --count --show-source --max-line-length=240 --ignore=E129,E741
diff --git a/setup.py b/setup.py
index d5f68ca..1143f9f 100644
--- a/setup.py
+++ b/setup.py
@@ -1,3 +1,4 @@
+#!/usr/bin/env python
from setuptools import setup
setup(
@@ -9,7 +10,7 @@ setup(
author_email='jon.turney@dronecode.org.uk',
license='MIT',
packages=['calm'],
- entry_points= {
+ entry_points={
'console_scripts': [
'calm = calm.calm:main',
'mksetupini = calm.mksetupini:main',