-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (51 loc) · 1.79 KB
/
setup.py
File metadata and controls
53 lines (51 loc) · 1.79 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
from setuptools import setup, find_packages
setup(
name="semantio",
version="0.0.8",
description="A powerful SDK for building AI agents",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Rakesh",
author_email="rakeshsahoo689@gmail.com",
url="https://github.com/Syenah/semantio",
packages=find_packages(),
install_requires=[
"openai",
"anthropic",
"groq",
"google-genai",
"mistralai",
"faiss-cpu", # For vector storage
"pydantic", # For data validation
"requests", # For web tools
"playwright", # For web scraping
"fastapi", # For creating the RESTful API
"uvicorn", # For running the FastAPI app
"pillow", # For image processing
"slowapi", # For rate limiting
"sentence-transformers", # For sentence embeddings
"fuzzywuzzy", # For fuzzy string matching
"duckduckgo-search", # For DuckDuckGo search
"yfinance", # For stock/crypto prices
"beautifulsoup4", # For HTML parsing
"webdriver-manager", # For browser automation
"validators", # For URL validation
"PyPDF2", # For PDF parsing
"youtube-transcript-api", # For YouTube transcripts
"pandas", # For data manipulation
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
python_requires=">=3.8",
entry_points={
"console_scripts": [
"semantio=semantio.cli.main:main",
],
},
)