forked from rsenet/iosEnv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (33 loc) · 1.12 KB
/
setup.py
File metadata and controls
43 lines (33 loc) · 1.12 KB
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
from setuptools import setup, find_packages
def parse_requirements(file):
required = []
with open(file) as f:
for req in f.read().splitlines():
if not req.strip().startswith('#'):
required.append(req)
return required
requirements = parse_requirements('requirements.txt')
long_description = "iOSEnv allows to quickly parse the applicationState.db file"
setup(
name="iOSEnv",
version="0.1",
description="iOS installed application parser",
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 3',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS'
'Topic :: Utilities',
'Topic :: Security',
],
packages=find_packages(),
install_requires=requirements,
python_requires='>3.6',
scripts=['iOSEnv.py'],
)