report begonnen

This commit is contained in:
Frederik Jaeckel 2022-08-16 17:05:01 +02:00
parent 810ecea0ba
commit 70038eb15e
6 changed files with 312 additions and 2 deletions

View file

@ -42,7 +42,7 @@ with open(path.join(here, 'versiondep.txt'), encoding='utf-8') as f:
major_version = 6
minor_version = 0
requires = []
requires = ['python-slugify']
for dep in info.get('depends', []):
if not re.match(r'(ir|res|webdav)(\W|$)', dep):
if dep in modversion.keys():
@ -98,7 +98,7 @@ setup(name='%s_%s' % (PREFIX, MODULE),
'trytond.modules.%s' % MODULE: (info.get('xml', [])
+ ['tryton.cfg', 'locale/*.po', 'tests/*.py',
'view/*.xml', 'icon/*.svg',
'versiondep.txt', 'README.rst']),
'report/*.fods', 'versiondep.txt', 'README.rst']),
},
install_requires=requires,