16 lines
297 B
TOML
16 lines
297 B
TOML
[build-system]
|
|
requires = ["setuptools>=61"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "teampulse"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.12"
|
|
dependencies = ["playwright>=1.44"]
|
|
|
|
[project.scripts]
|
|
teampulse = "teampulse.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|