-
Notifications
You must be signed in to change notification settings - Fork 314
/
Copy pathpyproject.toml
55 lines (52 loc) · 1.59 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyseoanalyzer"
version = "2024.12.12"
authors = [
{name = "Seth Black", email = "sblack@sethserver.com"},
]
dependencies = [
"beautifulsoup4>=4.12.3",
"certifi>=2024.8.30",
"Jinja2>=3.1.4",
"lxml>=5.3.0",
"MarkupSafe>=3.0.2",
"trafilatura>=2.0.0",
"urllib3>=2.2.3",
]
requires-python = ">= 3.8"
description = "An SEO tool that analyzes the structure of a site, crawls the site, count words in the body of the site and warns of any technical SEO issues."
readme = "README.md"
license = {file = "LICENSE"}
keywords = [
"search engine optimization",
"seo",
"website parser",
"crawler",
"scraper",
"site analyzer",
"site parser",
"site crawler",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing",
"Topic :: Internet :: WWW/HTTP",
]
[project.scripts]
seoanalyze = "pyseoanalyzer.__main__:main"
[project.urls]
Homepage = "https://github.com/sethblack/python-seo-analyzer"
Repository = "https://github.com/sethblack/python-seo-analyzer.git"
Issues = "https://github.com/sethblack/python-seo-analyzer/issues"