mirror of
https://github.com/simon987/vanwanet_scrape.git
synced 2025-04-10 14:06:43 +00:00
14 lines
331 B
Python
14 lines
331 B
Python
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",
|
|
]
|
|
)
|