This commit is contained in:
Eric Hanko 2017-05-18 14:32:18 -07:00
Родитель faf8706ab8
Коммит 0f85384776
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -15,7 +15,7 @@
<key>CFBundleName</key>
<string>InQRy</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>1.2.3</string>
<key>CFBundleVersion</key>
<string>1.2.3</string>
<key>LSMinimumSystemVersion</key>

Просмотреть файл

@ -13,16 +13,16 @@ The QR code contains detailed information about the client machine or device, wh
assets into a Snipe-IT database.
"""
name = 'inqry'
version = '1.2.3'
plist = Plist.fromFile('Info.plist')
plist.update(dict(
CFBundleVersion=version,
CFBundleName=name))
CFBundleShortVersionString=version,
CFBundleName='InQRy'))
setup(
name=name,
name='inqry',
app=['inqry/__main__.py'],
author=['Microsoft Apex Lab'],
author_email='apxlab@microsoft.com',