-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
52 lines (48 loc) · 1.06 KB
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
[build-system]
requires = ["uv_build>=0.8.22,<0.9.0"]
build-backend = "uv_build"
[project]
name = "pycommence"
version = "0.2.4"
description = "wrapper for Commence Rm via pywin32"
authors = [
{ name = "PawRequest", email = "pycommence+pawrequest@users.noreply.github.com" }
]
dependencies = [
"pywin32",
"loguru",
"pydantic",
"comtypes>=1.4.11",
]
readme = "README.rst"
requires-python = ">= 3.13"
[project.urls]
Homepage = "https://github.com/pawrequest/pycommence"
[project.optional-dependencies]
dev = [
"pytest-asyncio>=1.1.0",
"pytest>=8.3.5",
'autodoc_pydantic',
"sphinx",
"sphinx-autodoc-typehints",
"sphinx-rtd-theme",
"myst-parser",
"sphinx-readme",
"sphinx_rtd_dark_mode",
]
[dependency-groups]
dev = [
"pytest-asyncio>=1.1.0",
"pytest>=8.3.5",
'autodoc_pydantic',
"sphinx",
"sphinx-autodoc-typehints",
"sphinx-rtd-theme",
"myst-parser",
"sphinx-readme",
"sphinx_rtd_dark_mode",
]
[tool.ruff]
line-length = 120
lint.extend-select = ["RUF100", "UP"]
format.quote-style = "single"