-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1.07 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
from ohre import __version__
from setuptools import setup, find_packages
setup(
name="ohre",
version=__version__,
packages=find_packages(),
install_requires=[
"yara-python>=4.5.0",
"pyyaml>=6.0.2",
"leb128>=1.0.6",
"pendulum>=3.0.0"
],
author="https://github.com/ohreteam",
description="ohre is a analyze and reverse tool of Open HarmonyOS / HarmonyOS NEXT package.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/ohreteam",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Security",
"Topic :: Software Development",
"Topic :: Utilities",
],
python_requires=">=3.9",
)