mirror of
https://github.com/simon987/vanwanet_scrape.git
synced 2025-04-04 08:12:59 +00:00
17 lines
403 B
Python
17 lines
403 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="vanwanet_scrape",
|
|
version="1.3",
|
|
description="VanwaTech DDoS protection bypass",
|
|
author="simon987",
|
|
author_email="me@simon987.net",
|
|
packages=["vanwanet_scrape"],
|
|
install_requires=[
|
|
"requests", "bs4", "hexlib @ git+git://github.com/simon987/hexlib.git",
|
|
],
|
|
package_data={
|
|
"vanwanet_scrape": ["*.js"],
|
|
}
|
|
)
|