-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.35 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (42 loc) · 1.35 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
[project]
name = "autonitia-intel"
version = "0.2.1"
description = "Turn any business website into a clean, structured company profile — a graph-based extraction engine."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Syed Mukarramuddin" }]
keywords = ["web-scraping", "llm", "company-data", "lead-generation", "openai", "extraction", "graph"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"requests>=2.31",
"beautifulsoup4>=4.12",
"lxml>=5.0",
"openai>=1.40",
"pydantic>=2.0",
"python-dotenv>=1.0",
"pyyaml>=6.0",
"cloudscraper>=1.2.71",
"playwright>=1.40",
]
[project.optional-dependencies]
dev = ["pytest>=8.0"]
[project.urls]
Homepage = "https://github.com/Autonitia/autonitia-intel"
Repository = "https://github.com/Autonitia/autonitia-intel"
[project.scripts]
autonitia-intel = "autonitia_intel.cli:main"
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["autonitia_intel*"]
[tool.setuptools.package-data]
autonitia_intel = ["signal_packs/**/*.yaml"]