You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
494 B
TOML
21 lines
494 B
TOML
[project]
|
|
name = "test_app"
|
|
authors = [
|
|
{ name = "Hrishikesh", email = "hrishikesh@unifyxperts.com"}
|
|
]
|
|
description = "Test App"
|
|
requires-python = ">=3.10"
|
|
readme = "README.md"
|
|
dynamic = ["version"]
|
|
dependencies = [
|
|
# "frappe~=15.0.0" # Installed and managed by bench.
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["flit_core >=3.4,<4"]
|
|
build-backend = "flit_core.buildapi"
|
|
|
|
# These dependencies are only installed when developer mode is enabled
|
|
[tool.bench.dev-dependencies]
|
|
# package_name = "~=1.1.0"
|