-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.21 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (44 loc) · 1.21 KB
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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "backlink-intelligence"
version = "1.1.0"
description = "Open-source backlink intelligence based on evidence, context, and editorial fit."
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [{name = "Alok Kumar"}]
keywords = [
"seo",
"backlinks",
"link-building",
"technical-seo",
"content-analysis",
"backlink-audit"
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
]
[project.urls]
Homepage = "https://alokblog.com/backlink-quality-beyond-da-dr/"
Repository = "https://github.com/alok-vibe-code/backlink-intelligence"
Issues = "https://github.com/alok-vibe-code/backlink-intelligence/issues"
[project.scripts]
backlink-intelligence = "backlink_intelligence.cli:main"
[project.optional-dependencies]
api = [
"fastapi>=0.116,<1",
"pydantic>=2.11,<3",
"uvicorn>=0.35,<1",
]
test = [
"httpx>=0.28,<1",
]
[tool.setuptools.packages.find]
include = ["backlink_intelligence*"]