-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
35 lines (34 loc) · 1.12 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
from setuptools import setup, find_packages
setup(
name='binGraph',
version='3.3.1',
description='CAPE\'s version of binGraph',
license='GNU Affero General Public License v3.0',
packages=find_packages(),
url='https://github.com/CAPESandbox/binGraph',
author='https://github.com/geekscrapy',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
],
entry_points={
'console_scripts': [
'binGraph = binGraph:__main__.main',
],
},
install_requires=[
"matplotlib>=3.3.0", # 3.5.2
"numpy>=1.19.1", # 1.21.0
"pefile>=2021.9.3",
],
)