forked from dod-cyber-crime-center/pyhidra
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
40 lines (37 loc) · 970 Bytes
/
setup.cfg
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
[metadata]
name = pyhidra
author = DC3
version = attr:pyhidra.__version__
description = Native CPython for Ghidra
long_description_content_type = text/markdown
long_description = file:README.md
license = MIT
license_files =
LICENSE
NOTICE
url = https://github.com/Defense-Cyber-Crime-Center/pyhidra
keywords = ghidra
platform = any
classifiers =
Development Status :: 3 - Alphas
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
python_requires = >= 3.7
packages = find:
zip_safe = False
include_package_data = True
install_requires =
Jpype1>=1.3.0
[options.entry_points]
console_scripts =
pyhidra = pyhidra.__main__:main
gui_scripts =
pyhidraw = pyhidra.gui:gui
[tool:pytest]
testpaths = tests