-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
31 lines (26 loc) · 997 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
import pathlib
import setuptools
file = pathlib.Path(__file__).parent
README = (file / "README.md").read_text()
setuptools.setup(
name="Webtrench",
version="0.1.02",
author="Nuhman Pk",
author_email="[email protected]",
long_description = README,
long_description_content_type = "text/markdown",
description="A powerful and easy-to-use web scrapper for collecting data from the web. Supports scraping of images, text, videos, meta data, and more. Ideal for machine learning and deep learning engineers. Download and extract data with just one line of code",
license="MIT",
url="https://github.com/nuhmanpk/Webtrench",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(include=['Webtrench']),
install_requires=[
'bs4',
'requests',
],
python_requires=">=3.6",
)