mirror of
https://github.com/langchain-ai/python-langraph-monorepo-example.git
synced 2026-08-24 06:23:07 -04:00
21 lines
462 B
TOML
21 lines
462 B
TOML
[project]
|
|
name = "shared"
|
|
version = "0.0.1"
|
|
description = "Shared utilities for the Python monorepo"
|
|
authors = [
|
|
{ name = "Developer", email = "dev@example.com" },
|
|
]
|
|
readme = "README.md"
|
|
license = { text = "MIT" }
|
|
requires-python = ">=3.11,<4.0"
|
|
dependencies = []
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=73.0.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
packages = ["shared"]
|
|
|
|
[tool.setuptools.package-dir]
|
|
"shared" = "src/shared" |