diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml index dd5a62a..2f8cd67 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = 'flit_core.buildapi' module = 'brutalmaze' author = 'Nguyễn Gia Phong' author-email = 'mcsinyx@disroot.org' -home-page = 'https://github.com/McSinyx/brutalmaze' +home-page = 'https://git.disroot.org/McSinyx/brutalmaze' requires = ['appdirs', 'palace', 'pygame>=1.9', 'setuptools'] description-file = 'README.rst' classifiers = [ @@ -25,5 +25,8 @@ requires-python = '>=3.6' keywords = 'pygame,shmup,maze,ai-challenges' license = 'AGPLv3+' +[tool.flit.metadata.urls] +Documentation = 'https://brutalmaze.rtfd.io' + [tool.flit.entrypoints.console_scripts] -brutalmaze = "brutalmaze.game:main" +brutalmaze = 'brutalmaze.game:main' |