Переглянути джерело

Fix lint warnings

tags/v0.2.0
Jérôme Deuchnord 4 роки тому
джерело
коміт
2ef848eb16
Не вдалося знайти GPG ключ що відповідає даному підпису Ідентифікатор GPG ключа: BC6F3C345B7D33B0
2 змінених файлів з 22 додано та 3 видалено
  1. +1
    -1
      .github/workflows/pythonapp.yml
  2. +21
    -2
      setup.py

+ 1
- 1
.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

+ 21
- 2
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 <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()


Завантаження…
Відмінити
Зберегти