forked from microsoft/durabletask-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (40 loc) · 1.13 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
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# For more information on pyproject.toml, see https://peps.python.org/pep-0621/
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "durabletask-dapr"
dynamic = ["version"]
description = "A Durable Task Client SDK for Python"
keywords = [
"durable",
"task",
"workflow"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
requires-python = ">=3.9"
license = {file = "LICENSE"}
readme = "README.md"
dependencies = [
"grpcio",
]
[project.urls]
repository = "https://github.com/dapr/durabletask-python"
changelog = "https://github.com/dapr/durabletask-python/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
include = ["durabletask", "durabletask.*"]
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
markers = [
"e2e: mark a test as an end-to-end test that requires a running sidecar"
]