-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
49 lines (48 loc) · 1.82 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
import setuptools_scm
setup(
name="souperscraper",
use_scm_version=True,
setup_requires=["setuptools_scm>=8"],
description="A simple web scraper base combining Beautiful Soup and Selenium",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Lucas Faudman",
author_email="lucasfaudman@gmail.com",
url="https://github.com/LucasFaudman/souper-scraper.git",
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
install_requires=[
"selenium",
"beautifulsoup4",
"requests",
],
python_requires=">=3.8",
license="LICENSE",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
],
keywords="web-scraping scraping easy beautifulsoup4 beautifulsoup bs4 selenium selenium-webdriver",
project_urls={
"Homepage": "https://github.com/LucasFaudman/souper-scraper.git",
"Repository": "https://github.com/LucasFaudman/souper-scraper.git",
},
entry_points={
"console_scripts": [
"getchromedriver=souperscraper.getchromedriver:main",
],
},
)