-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 802 Bytes
/
pyproject.toml
File metadata and controls
31 lines (26 loc) · 802 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
[tool.black]
line-length = 88
[tool.isort]
profile = 'black'
[tool.pydocstyle]
convention = "pep257"
[project]
name = "dearpygui_task_list"
version = "4.0.1"
authors = [
{ name="Myles Bartlett", email="myles@bangsparks.com" },
]
description = "A task list application, written in Python3 using the dearpygui library"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/mylesbartlett72/Python-Task-List"
"Bug Tracker" = "https://github.com/mylesbartlett72/Python-Task-List/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"