-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.18 KB
/
setup.py
File metadata and controls
37 lines (34 loc) · 1.18 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
import setuptools
from setuptools import setup
#from manafa._version import __version__
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='anadroid',
description='PyAnaDroid: A replicable, fully-customizable execution pipeline for'
'analyzing and benchmarking Android Applications',
long_description=long_description,
long_description_content_type='text/markdown',
author='Rui Rua',
author_email='rui.rrua@gmail.com',
url='https://github.com/greensoftwarelab/PyAnaDroid',
license='MIT',
packages=setuptools.find_packages(),
use_incremental=True,
install_requires=required,
setup_requires=['incremental'],
include_package_data=True,
scripts=['bin/pyanadroid'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.8',
],
project_urls={
'Bug Tracker': 'https://github.com/greensoftwarelab/PyAnaDroid/issues'
},
python_requires=">=3.8",
)