24 lines
463 B
TOML
24 lines
463 B
TOML
[project]
|
|
name = "sync-protocol"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Alireza Rabie", email = "alireza@aazerra.dev" }
|
|
]
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"click>=8.4.2",
|
|
"jinja2>=3.1.6",
|
|
]
|
|
|
|
[project.scripts]
|
|
schema= "generator.main:cli"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/generator"]
|