-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·32 lines (30 loc) · 1.05 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python3
from setuptools import find_packages, setup
with open('VERSION') as f:
VERSION=f.read()
setup(
name='pyList-ManifestDB-iOSBackup',
version=VERSION,
description="Tool to interact with iOS backups",
url='https://github.com/ekuester/pyGTK-List-ManifestDB-from-iOSBackup',
author="Erich Küster",
author_email='erich.kuester@arcor.de',
packages=['pyList-ManifestDB-iOSBackup'],
license="MIT",
classifiers=[
'Development Status :: 12 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Topic :: System :: Archiving :: Backup',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
],
keywords='iOS backup Manifest.db',
package_data={
# include files found in the "pyXMLGPX-parser" package
'pyList-ManifestDB-iOSBackup': ['*.xpm', 'COMMENTS', 'LICENSE', 'locale/*/LC_MESSAGES/*.mo'],
},
package_include=[True],
zip_safe=False,
)