-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpyproject.toml
32 lines (26 loc) · 1 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "yagooglesearch"
dynamic = ["version"]
dependencies = ["beautifulsoup4>=4.9.3", "requests>=2.31.0", "requests[socks]"]
requires-python = ">=3.6"
authors = [{ name = "Brennon Thomas", email = "[email protected]" }]
description = "A Python library for executing intelligent, realistic-looking, and tunable Google searches."
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
keywords = ["python", "google", "search", "googlesearch"]
classifiers = ["Programming Language :: Python"]
[project.urls]
Homepage = "https://github.com/opsdisk/yagooglesearch"
Documentation = "https://github.com/opsdisk/yagooglesearch"
Repository = "https://github.com/opsdisk/yagooglesearch"
[tool.setuptools.dynamic]
version = { attr = "yagooglesearch.__version__" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
yagooglesearch = ["*.txt"]
[tool.black]
line-length = 120