* feat: add local holidays (cherry picked from commitaa18b25a71) * test(Holiday List): weekly off and local holidays (cherry picked from commitfd23bd0434) * feat(Holiday List): display localized country name (cherry picked from commit4888d75e72) * fix: German translations of Holiday List (cherry picked from commit509061f05b) # Conflicts: # erpnext/translations/de.csv * fix(Holiday List): use current user's language For consistency with "weekly off" descriptions (cherry picked from commit8271a39cdb) * fix(Holiday List): allow empty value (cherry picked from commit8aff5a1dab) * refactor(Holiday List): use autocomplete fieldtype (cherry picked from commitdab9688410) * chore: resolve merge conflicts --------- Co-authored-by: barredterra <14891507+barredterra@users.noreply.github.com>
46 lines
940 B
TOML
46 lines
940 B
TOML
[project]
|
|
name = "erpnext"
|
|
authors = [
|
|
{ name = "Frappe Technologies Pvt Ltd", email = "developers@frappe.io"}
|
|
]
|
|
description = "Open Source ERP"
|
|
requires-python = ">=3.10"
|
|
readme = "README.md"
|
|
dynamic = ["version"]
|
|
dependencies = [
|
|
# Core dependencies
|
|
"pycountry~=20.7.3",
|
|
"python-stdnum~=1.16",
|
|
"Unidecode~=1.2.0",
|
|
"redisearch~=2.1.0",
|
|
"rapidfuzz~=2.15.0",
|
|
"holidays~=0.28",
|
|
|
|
# integration dependencies
|
|
"gocardless-pro~=1.22.0",
|
|
"googlemaps",
|
|
"plaid-python~=7.2.1",
|
|
"python-youtube~=0.8.0",
|
|
"taxjar~=1.9.2",
|
|
"tweepy~=3.10.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["flit_core >=3.4,<4"]
|
|
build-backend = "flit_core.buildapi"
|
|
|
|
[tool.bench.dev-dependencies]
|
|
hypothesis = "~=6.31.0"
|
|
|
|
[tool.black]
|
|
line-length = 99
|
|
|
|
[tool.isort]
|
|
line_length = 99
|
|
multi_line_output = 3
|
|
include_trailing_comma = true
|
|
force_grid_wrap = 0
|
|
use_parentheses = true
|
|
ensure_newline_before_comments = true
|
|
indent = "\t"
|