-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.46 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
48
49
[tool.poetry]
name = "upstash-workflow"
version = "0.0.1-rc.5"
description = "Python SDK for Upstash Workflow"
license = "MIT"
authors = ["Upstash <[email protected]>"]
maintainers = ["Upstash <[email protected]>"]
readme = "README.md"
repository = "https://github.com/upstash/workflow-py"
keywords = ["Workflow", "Upstash Workflow", "Durable Serverless Functions"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
]
packages = [{ include = "upstash_workflow" }]
[tool.poetry.dependencies]
python = "^3.8"
qstash = "^2.0.3"
[tool.poetry.group.fastapi.dependencies]
fastapi = "^0.115.0"
[tool.poetry.group.flask.dependencies]
Flask = "^3.0.3"
[tool.poetry.group.dev.dependencies]
ruff = "^0.5.0"
mypy = "^1.10.0"
pytest = "^8.2.2"
pytest-asyncio = "^0.23.7"
aiohttp = "^3.8.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"