initial commit

This commit is contained in:
2019-12-17 10:35:14 -05:00
parent d1bd0a6bb4
commit b8d1c2bcc3
6 changed files with 225 additions and 0 deletions

13
setup.py Normal file
View File

@@ -0,0 +1,13 @@
from setuptools import setup
setup(
name="vanwanet_scrape",
version="1.0",
description="VanwaTech DDoS protection bypass",
author="simon987",
author_email="me@simon987.net",
packages=["vanwanet_scrape"],
install_requires=[
"requests", "bs4", "git+git://github.com/simon987/hexlib.git",
]
)