-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (32 loc) · 1.06 KB
/
pyproject.toml
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
33
34
35
36
37
38
39
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "terminal-minesweeper"
description = "A pure Python implementation of minesweeper using curses"
readme = "README.md"
requires-python = ">=3.6"
license = { text = "GPL-3.0-only" }
classifiers = [
'Environment :: Console :: Curses',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 3',
'Topic :: Games/Entertainment'
]
dependencies = [
"windows-curses ; platform_system == 'Windows'"
]
authors = [{ name = "Mia Celeste", email = "[email protected]" }]
dynamic = ["version"]
[project.scripts]
minesweeper = "minesweeper.main:run"
[project.urls]
Homepage = "https://minesweeper.mia1024.io"
GitHub = "https://github.com/mia1024/terminal-minesweeper"
[tool.setuptools]
packages = ["minesweeper"]
[tool.setuptools.dynamic]
version = {attr = "minesweeper.__version__"}