-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (29 loc) · 1.22 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
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
if sys.version_info.major == 3 and sys.version_info.minor < 5:
print('Unfortunately, your python version is not supported!\n Please upgrade at least to python 3.5!')
sys.exit(1)
if sys.platform == 'darwin' or sys.platform == 'win32':
print('Unfortunately, we do not support your platform %s' % sys.platform)
sys.exit(1)
install_requires = []
setup(name='aosp_framework_perm_list',
version='1.0.0',
description='Extract translated descriptions of permissions and groups from AOSP.',
author='mayankmetha',
author_email='',
url='https://github.com/mayankmetha/aosp_framework_perm_list',
packages=find_packages(exclude=['*.tests', '*.tests.*', 'test*', 'tests']),
install_requires=install_requires,
python_requires='>=3.5, <4',
scripts=['./aosp_framework_perm_list/aosp_framework_perm_list'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3',
'Natural Language :: English',
'Topic :: Security',
'Topic :: Utilities',
'Programming Language :: Python :: 3 :: Only',
]
)