-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.11 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (36 loc) · 1.11 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="langflow2langgraph",
version="0.1.0",
description="Convert LangFlow JSON exports into LangGraph Python code",
author="Neuronaut",
author_email="neuronaut73@users.noreply.github.com",
url="https://github.com/neuronaut73/langflow2langgraph",
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
"langchain>=0.1.0",
"rich",
],
extras_require={
"openai": ["openai"],
},
entry_points={
"console_scripts": [
"lf2lg=langflow2langgraph.cli:main"
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
keywords="langflow, langgraph, langchain, converter",
)