From 2ef848eb16052e9cd5417512668ed43b70646888 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Deuchnord?= Date: Mon, 11 Nov 2019 10:12:17 +0100 Subject: [PATCH] Fix lint warnings --- .github/workflows/pythonapp.yml | 2 +- setup.py | 23 +++++++++++++++++++++-- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 03f1129..9f18186 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -19,4 +19,4 @@ jobs: pipenv sync -d - name: Lint run: | - pipenv run pylint *.py kosmorrolib/*.py + pipenv run pylint kosmorro *.py kosmorrolib/*.py diff --git a/setup.py b/setup.py index 9f55e76..1fc3b44 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,25 @@ -from kosmorrolib.core import VERSION -from setuptools import setup, find_packages +#!/usr/bin/env python3 + +# Kosmorro - Compute The Next Ephemerides +# Copyright (C) 2019 Jérôme Deuchnord +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + import pathlib +from setuptools import setup, find_packages + +from kosmorrolib.core import VERSION HERE = pathlib.Path(__file__).parent README = (HERE / 'README.md').read_text()