-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
82 lines (72 loc) · 1.73 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = [
"hatchling",
"hatch-nodejs-version",
"nodejs-wheel~=22.11",
"pyyaml",
]
build-backend = "hatchling.build"
[project]
name = "dpgui"
dynamic = ["version"]
description = "A web-based GUI for user inputs."
authors = [
{ name = "DeepModeling" },
]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
]
dependencies = [
"dargs>=0.2.6",
"werkzeug",
"waitress",
'importlib_metadata>=1.4; python_version < "3.8"',
]
requires-python = ">=3.7"
readme = "README.md"
keywords = ["gui"]
[project.urls]
repository = "https://github.com/deepmodeling/dpgui"
[project.scripts]
dpgui = "dpgui.cli:dpgui"
[tool.hatch.build]
artifacts = [
"/dpgui/dist",
]
[tool.hatch.build.targets.wheel]
packages = [
"dpgui",
]
[tool.hatch.version]
source = "nodejs"
[tool.hatch.build.targets.wheel.hooks.custom]
[tool.isort]
profile = "black"
[tool.ruff]
select = [
"E", # errors
"F", # pyflakes
"D", # pydocstyle
"I", # isort
"UP", # pyupgrade
"C4", # flake8-comprehensions
"RUF", # ruff
"NPY", # numpy
]
ignore = [
"E501", # line too long
"E741", # ambiguous variable name
"E402", # module level import not at top of file
"D205", # 1 blank line required between summary line and description
]
[tool.ruff.pydocstyle]
convention = "numpy"