-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (43 loc) · 1.1 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
43
44
45
46
47
[project]
name = "kine"
version = "0.0.1"
description = 'A react style gui framework in python'
readme = "README.md"
requires-python = ">= 3.11"
license = "MIT"
keywords = []
authors = [
{ name = "Zomatree", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython"
]
dependencies = [
"aiohttp==3.8.5",
"toml==0.10.2",
"typing_extensions==4.5.0",
"pipdeptree==2.3.3",
"msgpack==1.0.5",
"click==8.1.3",
"aiohttp_cors==0.7.0"
]
[project.urls]
Documentation = "https://github.com/Zomatree/kine#readme"
Issues = "https://github.com/Zomatree/kine/issues"
Source = "https://github.com/Zomatree/kine"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pyright]
typeCheckingMode = "strict"
reportPrivateUsage = "none"
reportImportCycles = "none"
reportMissingTypeStubs = "none"
reportMissingModuleSource = "none"
reportWildcardImportFromLibrary = "none"
[tool.black]
line-length = 120
target-version = ["py311"]