-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (50 loc) · 1.5 KB
/
setup.py
File metadata and controls
51 lines (50 loc) · 1.5 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
from setuptools import setup, find_packages
setup(
name="PocketTraveller", # Replace with your project name
version="0.1.0", # Replace with your project version
description="Travel Iterinery Traveller Agent that gives tailored travel recommendations, flights, and accomodations bookings etc.", # Replace with a description
author="Paul Okafor", # Replace with your name
author_email="acobapaul@gmail.com", # Replace with your email
packages=find_packages(), # Automatically find packages in your project
install_requires=[
# List your dependencies here, e.g.:
"langgraph",
"numpy",
"pandas",
"langchain",
"langchain_core",
"langchain_anthropic",
"langchain_openai",
"tavily_python",
"langchain_community",
"langchain-groq",
"langgraph",
"pyairbnb",
"geopy",
"python-dotenv",
"fast-flights",
"pydantic",
"langchain_openai",
"PyPDF2",
"amadeus",
"beautifulsoup4",
"googlemaps",
"docling",
"arxiv",
"needle-python",
"fastapi",
"uvicorn",
"jinja2",
"pydantic",
"sendgrid"
# Add other dependencies from requirements.txt
],
extras_require={
"dev": [
"pytest",
"black",
"flake8",
], # Optional: Add development dependencies
},
python_requires=">=3.8", # Specify the Python version requirement
)