2026-07-22 19:12:44 -04:00
|
|
|
[build-system]
|
|
|
|
|
requires = ['hatchling >= 1', 'hatch-tryton']
|
|
|
|
|
build-backend = 'hatchling.build'
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = 'trytond_account_do'
|
|
|
|
|
dynamic = ['version', 'dependencies', 'optional-dependencies', 'authors', 'readme']
|
|
|
|
|
requires-python = '>=3.10'
|
|
|
|
|
maintainers = [
|
2026-08-10 00:08:55 -04:00
|
|
|
{name = "Fundación Un País Mejor"},
|
2026-07-22 19:12:44 -04:00
|
|
|
]
|
|
|
|
|
description = "Dominican Republic accounting for Tryton"
|
|
|
|
|
license = 'GPL-3.0-or-later'
|
2026-08-10 00:08:55 -04:00
|
|
|
license-files = ['LICENSE', 'COPYRIGHT']
|
|
|
|
|
keywords = ["tryton", "accounting", "coa", "dominican-republic"]
|
2026-07-22 19:12:44 -04:00
|
|
|
classifiers = [
|
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
|
"Environment :: Plugins",
|
|
|
|
|
"Framework :: Tryton",
|
|
|
|
|
"Topic :: Office/Business",
|
|
|
|
|
"Topic :: Office/Business :: Financial :: Accounting",
|
|
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.entry-points.'trytond.modules']
|
|
|
|
|
account_do = 'trytond.modules.account_do'
|
|
|
|
|
|
|
|
|
|
[project.urls]
|
2026-08-10 00:08:55 -04:00
|
|
|
homepage = "https://www.unpaismejor.org.do"
|
|
|
|
|
documentation = "https://docs.tryton.org/modules-account-do/"
|
|
|
|
|
changelog = "https://docs.tryton.org/modules-account-do/releases.html"
|
|
|
|
|
forum = "https://www.tryton.org/forum"
|
|
|
|
|
issues = "https://bugs.tryton.org/tryton"
|
|
|
|
|
repository = "https://code.unpaismejor.org.do/tryton-do/account_do"
|
|
|
|
|
funding = "https://www.tryton.org/donate"
|
2026-07-22 19:12:44 -04:00
|
|
|
|
|
|
|
|
[tool.hatch.build]
|
|
|
|
|
include = [
|
|
|
|
|
'**/tryton.cfg',
|
|
|
|
|
'**/*.py',
|
|
|
|
|
'**/*.xml',
|
|
|
|
|
'view/**/*.xml',
|
|
|
|
|
'**/*.fodt',
|
|
|
|
|
'icons/**/*.svg',
|
|
|
|
|
'tests/**/*.rst',
|
|
|
|
|
'tests/**/*.json',
|
|
|
|
|
]
|
2026-08-10 00:08:55 -04:00
|
|
|
exclude = ['doc']
|
2026-07-22 19:12:44 -04:00
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel.sources]
|
|
|
|
|
"" = "trytond/modules/account_do"
|
|
|
|
|
|
|
|
|
|
[tool.hatch.metadata.hooks.tryton]
|
2026-08-10 00:08:55 -04:00
|
|
|
dependencies = []
|
2026-07-22 19:12:44 -04:00
|
|
|
copyright = 'COPYRIGHT'
|
|
|
|
|
readme = 'README.rst'
|
|
|
|
|
|
|
|
|
|
[tool.hatch.metadata.hooks.tryton.tryton-optional-dependencies]
|
|
|
|
|
test = ['proteus']
|