forked from assafelovic/gpt-researcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 1.14 KB
/
setup.py
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
from setuptools import find_packages, setup
with open(r"README.md", "r", encoding="utf-8") as f:
long_description = f.read()
with open("requirements.txt", "r") as f:
reqs = [line.strip() for line in f if ('selenium' not in line and 'webdriver' not in line)]
setup(
name="gpt-researcher",
version="0.0.5",
description="GPT Researcher is an autonomous agent designed for comprehensive online research on a variety of tasks.",
package_dir={'gpt_researcher': 'gpt_researcher'},
packages=find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/assafelovic/gpt-researcher",
author="Tavily",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
install_requires=reqs,
)