-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 997 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 997 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
28
29
30
31
[project]
name = "dearpygui-grid"
version = "1.0.1"
description = "Layout manager for Dear PyGui."
authors = [{name="Anthony Doupe",email="atlamillias@outlook.com"}]
keywords = []
urls = {Homepage="https://github.com/Atlamillias/DearPyGui-Grid"}
readme = "README.md"
classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Operating System :: Microsoft :: Windows :: Windows 8.1",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: Unix",
"License :: OSI Approved :: MIT License",
]
requires-python = ">=3.10"
dependencies = [
"dearpygui >= 1.9.0",
"typing-extensions; python_version < '3.12'",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"