From ed2add42ffffdad6d103845ce49d0f4244bf1d5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20Gia=20Phong?= Date: Sun, 6 Sep 2020 22:31:57 +0700 Subject: [PATCH] Retire Travis --- .travis.yml | 8 -------- README.md | 4 ++-- pyproject.toml | 5 ++--- tox.ini | 3 ++- 4 files changed, 6 insertions(+), 14 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index b9a4a82..0000000 --- a/.travis.yml +++ /dev/null @@ -1,8 +0,0 @@ -branches: - only: master - -language: python -python: 3.8 - -install: pip install tox -script: tox diff --git a/README.md b/README.md index e6860b3..5b46063 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # axuy -Mininalist peer-to-peer first-person shooter +Minimalist peer-to-peer first-person shooter -![icon](https://raw.githubusercontent.com/McSinyx/axuy/master/axuy/icon.png) +![icon](https://git.disroot.org/McSinyx/axuy/raw/branch/master/axuy/icon.png) ## Goals diff --git a/pyproject.toml b/pyproject.toml index 6a44bcb..6fba719 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = 'flit_core.buildapi' module = 'axuy' author = 'Nguyễn Gia Phong' author-email = 'mcsinyx@disroot.org' -home-page = 'https://github.com/McSinyx/axuy' +home-page = 'https://git.disroot.org/McSinyx/axuy' requires = ['appdirs', 'glfw>=1.8', 'moderngl', 'numpy', 'Pillow', 'pyrr', 'setuptools'] description-file = 'README.md' @@ -19,7 +19,6 @@ classifiers = [ 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', 'Natural Language :: English', 'Operating System :: OS Independent', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', @@ -31,4 +30,4 @@ keywords = 'fps,p2p,opengl,glfw' license = 'AGPLv3+' [tool.flit.entrypoints.console_scripts] -axuy = "axuy.__main__:main" +axuy = 'axuy.__main__:main' diff --git a/tox.ini b/tox.ini index daa3189..96f10a3 100644 --- a/tox.ini +++ b/tox.ini @@ -9,9 +9,10 @@ deps = isort commands = flake8 - isort -c --diff + isort . --check --diff [flake8] +hang-closing = True ignore = E226, E701, E704, W503 exclude = .git,__pycache__,.tox,__init__.py