-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 745 Bytes
/
setup.py
File metadata and controls
30 lines (25 loc) · 745 Bytes
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
#!/usr/bin/env python
# coding=utf-8
from setuptools import find_packages, setup
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,
entry_points={
'console_scripts':[
'libcsearch = LibcSearcher3.main:main',
]
},
install_requires=[],
)