read some fields

This commit is contained in:
Frederik Jaeckel 2025-01-06 17:52:48 +01:00
parent a5cbb23cdc
commit 0024f76192
14 changed files with 520 additions and 1 deletions

View file

@ -37,7 +37,7 @@ with open(path.join(here, 'versiondep.txt'), encoding='utf-8') as f:
major_version = 7
minor_version = 0
requires = ['pypdf', 'factur-x']
requires = ['pypdf', 'factur-x', 'lxml']
for dep in info.get('depends', []):
if not re.match(r'(ir|res|webdav)(\W|$)', dep):
if dep in modversion.keys():
@ -96,6 +96,7 @@ setup(
'trytond.modules.%s' % MODULE: (
info.get('xml', [])
+ ['tryton.cfg', 'locale/*.po', 'tests/*.py',
'view/*.xml',
'versiondep.txt', 'README.rst']),
},