-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathsetup.py
43 lines (41 loc) · 1.64 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
33
34
35
36
37
38
39
40
41
42
43
import setuptools
from iOSbackup import __version__
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="iOSbackup",
version=__version__,
author="Avi Alkalay",
author_email="[email protected]",
description="Reads and extracts files from password-encrypted iOS backups",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/avibrazil/iOSbackup",
install_requires=['NSKeyedUnArchiver','pycryptodome'],
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Environment :: MacOS X",
"Environment :: Console",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Legal Industry",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: MacOS",
"Operating System :: iOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Topic :: Database",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Embedded Systems",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Archiving :: Backup",
"Topic :: System :: Recovery Tools"
],
python_requires='>=3.7',
)