Ver a proveniência

Fix lint warnings

tags/v0.2.0
Jérôme Deuchnord há 4 anos
ascendente
cometimento
2ef848eb16
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados ID da chave GPG: BC6F3C345B7D33B0
2 ficheiros alterados com 22 adições e 3 eliminações
  1. +1
    -1
      .github/workflows/pythonapp.yml
  2. +21
    -2
      setup.py

+ 1
- 1
.github/workflows/pythonapp.yml Ver ficheiro

@@ -19,4 +19,4 @@ jobs:
pipenv sync -d
- name: Lint
run: |
pipenv run pylint *.py kosmorrolib/*.py
pipenv run pylint kosmorro *.py kosmorrolib/*.py

+ 21
- 2
setup.py Ver ficheiro

@@ -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 <jerome@deuchnord.fr>
#
# 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 <https://www.gnu.org/licenses/>.

import pathlib
from setuptools import setup, find_packages

from kosmorrolib.core import VERSION

HERE = pathlib.Path(__file__).parent
README = (HERE / 'README.md').read_text()


Carregando…
Cancelar
Guardar