-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
68 lines (60 loc) · 1.7 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "citable-cli"
version = "0.2.3"
description = "AI search visibility audit for ChatGPT, Claude, Perplexity, Google AI"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [
{ name = "Ignacio Lopez", email = "ignacio@work-smart.ai" },
]
keywords = ["seo", "ai-visibility", "geo", "aeo", "audit", "schema", "llm"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = [
"httpx[http2]>=0.27",
"beautifulsoup4>=4.12",
"openpyxl>=3.1",
"typer>=0.12",
"rich>=13.7",
"lxml>=5.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.4",
]
[project.scripts]
citable = "citable.cli:app"
[project.urls]
Homepage = "https://work-smart.ai/citable"
Repository = "https://github.com/WorkSmartAI-alt/citable"
Issues = "https://github.com/WorkSmartAI-alt/citable/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "B"]
ignore = ["E501"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = [
"live: tests that hit live websites (excluded by default)",
]