-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
43 lines (35 loc) · 1.21 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
40
41
42
[project]
name = "dearpypixl"
version = "1.2.13"
description = "An object-oriented, lightweight, modular framework and toolkit for Dear PyGui."
authors = [{name="Anthony Doupe", email="[email protected]"}]
keywords = ["dearpygui", "gui", "ui", "user-interface"]
urls = {Homepage="https://github.com/Atlamillias/DearPyPixl"}
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 ~= 65.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"dearpypixl",
]
include-package-data = true
[tool.setuptools.package-data]
dearpypixl = ["*.typed", "*.pyi"]