瀏覽代碼

Fix lint warnings

tags/v0.2.0
Jérôme Deuchnord 4 年之前
父節點
當前提交
2ef848eb16
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: 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()


Loading…
取消
儲存