-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
executable file
·43 lines (38 loc) · 1.33 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
36
37
38
39
40
41
42
43
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
requirements = ["numpy", "Pillow", "wheel"]
if sys.version_info >= (3, 0):
# py3
requirements.append("lief")
else:
# py2 - newer LIEF is Python3 only
requirements.append("lief==0.9.0")
setup(
name='apiscout',
version='2.0.2',
description='A library for Windows API usage recovery and similarity assessment with focus on memory dumps.',
long_description_content_type="text/markdown",
long_description=long_description,
author='Daniel Plohmann',
author_email='[email protected]',
url='https://github.com/danielplohmann/apiscout',
license="BSD 2-Clause",
packages=find_packages(exclude=('tests', 'dbs')),
package_data={'apiscout': ['data/winapi1024v1.txt', 'data/winapi_contexts.csv', 'data/html_frame.html']},
data_files=[
('', ['LICENSE']),
],
install_requires=requirements,
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Security",
"Topic :: Software Development :: Disassemblers",
],
)