forked from dapr/durabletask-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (37 loc) · 1.03 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
# 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"]
build-backend = "setuptools.build_meta"
[project]
name = "durabletask-dapr"
version = "0.1.1-alpha.1"
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.8"
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.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
markers = [
"e2e: mark a test as an end-to-end test that requires a running sidecar"
]