-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·27 lines (24 loc) · 870 Bytes
/
pyproject.toml
File metadata and controls
executable file
·27 lines (24 loc) · 870 Bytes
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
[project]
name = "pythonbmp"
description = "A pure Python 2D/3D graphics library that outputs to windows bitmap format"
version = "1.0.6"
authors = [
{ name = "Joel Alcarez", email = "joelalcarez1975@gmail.com" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
requires-python = ">=3.8"
license = {file = "LICENSE"}
readme = "README.md"
[project.urls]
homepage = "https://github.com/TechnoTanuki/Python_BMP"
documentation = "https://github.com/TechnoTanuki/Python_BMP/blob/main/docs/Hello_Graphics.md"
repository = "https://github.com/TechnoTanuki/Python_BMP"
"Bug Tracker" = "https://github.com/TechnoTanuki/Python_BMP/issues"
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools", "wheel"] # PEP 508 specifications.
[tool.setuptools]
package-dir = {"pythonbmp" = "pythonbmp"}