-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 934 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (30 loc) · 934 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
30
31
32
33
34
35
36
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "shopsystem-messaging"
version = "0.4.6"
description = "Messaging bounded context of the shopsystem product: Pydantic schemas for the eight inter-shop message types and the `shop-msg` CLI for reading/writing them."
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [{name = "David Stenglein"}]
dependencies = [
"pydantic>=2",
"pyyaml",
"psycopg[binary]>=3.0",
"scenarios @ git+https://github.com/dstengle/shopsystem-scenarios@v0.3.1",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"pytest-bdd>=7",
]
[project.urls]
Homepage = "https://github.com/dstengle/shopsystem-product"
Repository = "https://github.com/dstengle/shopsystem-messaging"
[project.scripts]
shop-msg = "shop_msg.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]