forked from temporalio/features
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 874 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
[project]
name = "features"
version = "0.1.0"
description = "Temporal SDK Features"
requires-python = "~=3.9"
license = "MIT"
dependencies = ["temporalio>=1.9.0,<2"]
[dependency-groups]
dev = [
"mypy>=0.961,<0.962",
"ruff>=0.9.6",
]
[tool.hatch.build.targets.sdist]
include = [
"features",
"harness/python/**/*.py",
]
[tool.hatch.build.targets.wheel]
include = [
"features",
"harness/python/**/*.py",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.poe.tasks]
format = [{cmd = "uv run ruff check --select I --fix"}, {cmd = "uv run ruff format"}, ]
lint = [
{cmd = "uv run ruff check --select I"},
{cmd = "uv run ruff format --check"},
{ref = "lint-types"},
]
lint-types = "mypy --explicit-package-bases --namespace-packages ."