-
Notifications
You must be signed in to change notification settings - Fork 161
/
setup.py
33 lines (28 loc) · 1.04 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
import os
import sys
from setuptools import setup, find_packages
version = '0.1.7'
def read(f):
return open(os.path.join(os.path.dirname(__file__), f)).read().strip()
setup(name='android-resource-remover',
version=version,
description=('Android resource remover'),
long_description='\n\n'.join((read('README.md'), read('CHANGELOG'))),
keywords=['android'],
classifiers=[
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Programming Language :: Python'],
author='Keepsafe',
author_email='support@getkeepsafe.com',
url='https://github.com/KeepSafe/android-resource-remover/',
license='Apache',
py_modules=['android_clean_app'],
namespace_packages=[],
install_requires=['lxml >= 3.3.3'],
data_files=[('.', ['AUTHORS', 'CHANGELOG', 'LICENSE', 'README.md'])],
entry_points={
'console_scripts': [
'android-resource-remover = android_clean_app:main']
},
include_package_data = False)