From e18586760e9055d4155e4b52f9b0d567e2e174ad Mon Sep 17 00:00:00 2001 From: ro0tk1t <1576235794@qq.com> Date: Tue, 15 Dec 2020 17:09:51 +0800 Subject: [PATCH] release v1.0.1 --- LibcSearcher3/__init__.py | 2 +- setup.py | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/LibcSearcher3/__init__.py b/LibcSearcher3/__init__.py index e5a88dd..6c689f2 100644 --- a/LibcSearcher3/__init__.py +++ b/LibcSearcher3/__init__.py @@ -1,4 +1,4 @@ #!/usr/bin/env python # coding=utf-8 -VERSION = 'v1.0.0' +VERSION = 'v1.0.1' diff --git a/setup.py b/setup.py index 481ab00..bcbd067 100644 --- a/setup.py +++ b/setup.py @@ -5,12 +5,18 @@ from LibcSearcher3 import VERSION +with open("README.md", "r", encoding="utf-8") as fh: + long_description = fh.read() + setup( name='LibcSearcher3', version=VERSION, url='https://github.com/Ro0tk1t/LibcSearcher3.git', description='libc offset database searcher', + long_description=long_description, + long_description_content_type="text/markdown", author='Ro0tk1t', + author_email='R00tk1t@qq.com', packages=find_packages(), python_requires='>=3.7', include_package_data=True,