-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
38 lines (27 loc) · 967 Bytes
/
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
"""Setup Script"""
from __future__ import absolute_import
from setuptools import setup
VERSION = '1.0.0'
setup(
name='pyxamstore',
version=VERSION,
description='Xamarin AssemblyStore Explorer (pyxamstore)',
download_url='https://github.com/jakev/pyxamstore',
author='Jake Valletta',
author_email='javallet@gmail.com',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Information Technology',
'Topic :: Security',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7'],
keywords='android device security mobile reverse-engineering Xamarin AssemblyStore',
packages=["pyxamstore"],
install_requires=open("requirements.txt", "rb").read().decode("utf-8").split("\n"),
entry_points={
'console_scripts': [
'pyxamstore = pyxamstore.explorer:main',
],
},
)