-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 910 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 910 Bytes
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
from setuptools import setup, find_packages
with open('./docs/README.md') as f:
long_description = f.read()
setup(
name='Web-Agent',
version='0.1',
description='The web agent is designed to automate the process of gathering information from the internet, such as to navigate websites, perform searches, and retrieve data.',
author='jeomon',
author_email='jeogeoalukka@gmail',
url='https://github.com/Jeomon/Web-Agent',
packages=find_packages(),
install_requires=[
'langgraph',
'tenacity'
'requests'
'playwright'
'termcolor'
'python-dotenv'
'httpx'
'nest_asyncio'
'MainContentExtractor'
],
entry_points={
'console_scripts': [
'web-agent=main:main'
]
},
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT'
)