-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 867 Bytes
/
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
try:
from setuptools import setup, find_packages
except Exception:
raise ImportError("setuptools is required to install h4cktools!")
setup(
name="h4cktools",
version="0.0.3",
description="h4cktools is a python library containing usefull helpers "
"for penetration testing and security challenges.",
url="https://github.com/WhatTheSlime/h4cktools",
author="Sélim Lanouar",
author_email="selim.lanouar@gmail.com",
license="GPLv3",
packages=find_packages(),
python_requires=">=3.6",
install_requires=[
"urllib3==1.25.9",
"lxml==4.6.2",
"requests==2.23.0",
"beautifulsoup4==4.9.3"
],
extras_require={
"tests": [
"pytest==6.1.2",
"pytest-asyncio==0.14.0",
"pytest-cov==2.10.1",
"requests_mock==1.8.0",
],
}
)