-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 857 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (25 loc) · 857 Bytes
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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "wiggle-client"
version = "0.1.1"
description = "Python client and worker for the Wiggle workflow engine"
readme = "README.md"
requires-python = ">=3.9"
license = "Apache-2.0"
authors = [{ name = "Hadi Elmougy" }]
dependencies = [
"grpcio>=1.60",
"protobuf>=4.25",
]
[project.optional-dependencies]
dev = ["grpcio-tools>=1.60", "pytest>=7"]
[project.urls]
Homepage = "https://github.com/hadielmougy/wiggle-python"
Repository = "https://github.com/hadielmougy/wiggle-python"
Engine = "https://github.com/hadielmougy/wiggle"
# Explicit package list (not auto-discovery) so the generated gRPC stubs in wiggle/_proto always ship,
# regardless of the build environment's setuptools version.
[tool.setuptools]
packages = ["wiggle", "wiggle._proto"]