Pārlūkot izejas kodu

Fix lint warnings

tags/v0.2.0
Jérôme Deuchnord pirms 4 gadiem
vecāks
revīzija
2ef848eb16
Šim parakstam datu bāzē netika atrasta zināma atslēga GPG atslēgas ID: BC6F3C345B7D33B0
2 mainītis faili ar 22 papildinājumiem un 3 dzēšanām
  1. +1
    -1
      .github/workflows/pythonapp.yml
  2. +21
    -2
      setup.py

+ 1
- 1
.github/workflows/pythonapp.yml Parādīt failu

@@ -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 Parādīt failu

@@ -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()


Notiek ielāde…
Atcelt
Saglabāt