-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 1.15 KB
/
Copy pathsetup.py
File metadata and controls
31 lines (30 loc) · 1.15 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
from setuptools import setup
setup(
name="hauntapi",
version="1.1.0",
description="Extract structured data from permitted public pages with one API call. Haunt API Python SDK.",
long_description=open("README.md").read() if __import__("os").path.exists("README.md") else "",
long_description_content_type="text/markdown",
author="Haunt API",
author_email="hello@hauntapi.com",
url="https://hauntapi.com",
py_modules=["hauntapi"],
install_requires=[
"httpx>=0.24.0",
],
extras_require={
"langchain": ["langchain-core>=0.2"],
"llamaindex": ["llama-index-core>=0.10"],
"crewai": ["crewai>=0.30"],
},
keywords="web-scraping web-extraction ai-agent agent-tools mcp langchain llamaindex crewai url-to-json url-to-markdown structured-data rag",
python_requires=">=3.8",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
],
)