brutalmaze/pyproject.toml

33 lines
1.1 KiB
TOML
Raw Permalink Normal View History

2020-03-03 15:24:41 +01:00
[build-system]
requires = ['flit_core >=2,<3']
build-backend = 'flit_core.buildapi'
[tool.flit.metadata]
module = 'brutalmaze'
author = 'Nguyễn Gia Phong'
author-email = 'mcsinyx@disroot.org'
2020-09-08 17:47:17 +02:00
home-page = 'https://git.disroot.org/McSinyx/brutalmaze'
requires = ['appdirs', 'palace', 'pygame>=1.9', 'setuptools']
2020-03-03 15:24:41 +01:00
description-file = 'README.rst'
classifiers = [
'Development Status :: 4 - Beta',
'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']
2020-04-28 12:50:36 +02:00
requires-python = '>=3.6'
2020-03-03 15:24:41 +01:00
keywords = 'pygame,shmup,maze,ai-challenges'
license = 'AGPLv3+'
2020-09-08 17:47:17 +02:00
[tool.flit.metadata.urls]
Documentation = 'https://brutalmaze.rtfd.io'
2020-03-03 15:24:41 +01:00
[tool.flit.entrypoints.console_scripts]
2020-09-08 17:47:17 +02:00
brutalmaze = 'brutalmaze.game:main'