-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (37 loc) · 1013 Bytes
/
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
[tool.poetry]
name = "sema4ai-crossplatform"
version = "0.1.2"
description = "Sema4.ai crossplatform dependencies"
authors = [
"Mika H. <[email protected]>",
]
readme = "README.md"
repository = "https://github.com/Sema4AI/data/"
license = "Sema4.ai Proprietary (see LICENSE)"
packages = [{ include = "sema4ai/crossplatform", from = "src" }]
[tool.poetry.dependencies]
python = "^3.10"
pywin32 = { version = ">=308", platform = "win32" }
comtypes = { version = "^1.4.8", platform = "win32" }
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.14"
mypy = "^1.1.1"
pytest = "^7.2.2"
pytest-xdist = "^3.2.1"
pytest-regressions = "1.0.6"
isort = { version = "^5.12.0", python = "^3.8" }
types-invoke = "^2.0"
invoke = "^2.2.0"
tomlkit = "^0.11.8"
semver = "^3.0.0"
pylint = "^2.17.4"
[tool.mypy]
mypy_path = "src:tests"
[tool.black]
skip-string-normalization = false
skip-magic-trailing-comma = false
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"