-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathsetup.py
49 lines (46 loc) · 1.62 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
"""
Setup script for Shandu deep research system.
"""
from setuptools import setup, find_packages
import os
# Read long description from README.md
with open("shandu/README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
# Read requirements
with open("requirements.txt") as f:
requirements = [line.strip() for line in f if line.strip() and not line.startswith("#")]
setup(
name="shandu",
version="1.5.2",
description="Deep research system with LangChain and LangGraph",
long_description=long_description,
long_description_content_type="text/markdown",
author="Dušan Jolović",
url="https://github.com/jolovicdev/shandu",
packages=find_packages(),
install_requires=requirements,
entry_points={
"console_scripts": [
"shandu=shandu.cli:cli",
],
},
python_requires=">=3.9",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="research, ai, llm, langchain, langgraph, deepresearch, deepsearch, search",
project_urls={
"Source": "https://github.com/jolovicdev/shandu",
},
include_package_data=True,
)