-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 1.37 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (41 loc) · 1.37 KB
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
40
41
42
43
44
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PyMsgBox"
version = "2.0.1"
description = "A simple, cross-platform, pure Python module for JavaScript-like message boxes."
readme = "README.md"
requires-python = ">=3.4"
license = { file = "LICENSE.txt" }
authors = [
{ name = "Al Sweigart", email = "al@inventwithpython.com" }
]
maintainers = [
{ name = "Al Sweigart", email = "al@inventwithpython.com" }
]
keywords = []
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/asweigart/pymsgbox"
Repository = "https://github.com/asweigart/pymsgbox"
Documentation = "https://github.com/asweigart/pymsgbox"
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["pymsgbox"]