Syntax fixing for a snippet.

This commit is contained in:
Emiliano Vavassori 2023-12-29 21:07:22 +01:00
parent 9229f08dd1
commit e8d32e67b5
1 changed files with 4 additions and 4 deletions

View File

@ -10,12 +10,12 @@ setup(
# Metadata for pypi
author="BgWorld Unipersonale Srl",
author_email = "assistenza@bgworld.it",
description = "${2:description}",
author_email="assistenza@bgworld.it",
description="${2:description}",
scripts=[
'scripts/$1'
],
install_requires = [
install_requires=[
'click==7.1.2',
'inotify==0.2.10',
'nose==1.3.7',
@ -23,7 +23,7 @@ setup(
'python-magic==0.4.18',
],
package_data={
'dagherroforo': [ 'dagherroforo_example.conf' ],
'dagherroforo': ['dagherroforo_example.conf'],
},
)
endsnippet