about summary refs log tree commit diff homepage
path: root/pyproject.toml
blob: 063b6b0f042fbe46b8e831198ceb976463e6e436 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[build-system]
requires = ['flit_core >=2,<4']
build-backend = 'flit_core.buildapi'

[tool.flit.metadata]
module = 'brutalmaze'
author = 'Nguyễn Gia Phong'
author-email = 'mcsinyx@disroot.org'
home-page = 'https://sr.ht/~cnx/brutalmaze'
requires = ['loca', 'palace', 'pygame>=2']
description-file = 'README.md'
classifiers = [
    'Development Status :: 5 - Production/Stable',
    'Environment :: MacOS X',
    'Environment :: Win32 (MS Windows)',
    'Environment :: X11 Applications',
    'Intended Audience :: End Users/Desktop',
    'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
    'Natural Language :: English',
    'Operating System :: OS Independent',
    'Programming Language :: Python',
    'Programming Language :: Python :: 3 :: Only',
    'Topic :: Games/Entertainment :: Arcade']
requires-python = '>=3.7'
keywords = 'pygame,shmup,maze,ai-challenges'
license = 'AGPLv3+'

[tool.flit.metadata.urls]
Documentation = 'https://brutalmaze.rtfd.io'

[tool.flit.entrypoints.console_scripts]
brutalmaze = 'brutalmaze.__main__:main'