-
Notifications
You must be signed in to change notification settings - Fork 228
/
setup.py
33 lines (31 loc) · 1.17 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
import setuptools
import GitHacker
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="GitHacker",
version=GitHacker.__version__,
author="Yihang Wang",
author_email="[email protected]",
description="A multiple threads tool to download the `.git` folder and rebuild git repository locally.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/WangYihang/GitHacker",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Topic :: Security",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Software Development :: Version Control",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
],
python_requires=">=3.6",
keywords="ctf, git, web, security",
install_requires=["requests", "coloredlogs", "GitPython", "beautifulsoup4", "semver"],
entry_points={
"console_scripts": [
"githacker=GitHacker:main",
],
},
)