-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
36 lines (33 loc) · 1.06 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("LICENSE", "r", encoding="utf-8") as fh:
license_content = fh.read()
setuptools.setup(
name="ceo-py",
version='0.9.3-preview',
author="vortezwohl",
author_email="vortez.wohl@gmail.com",
description="CEO is an intuitive and modular AI agent framework for task automation.",
long_description=long_description,
long_description_content_type="text/markdown",
license=license_content,
url="https://github.com/vortezwohl/CEO",
project_urls={
"Bug Tracker": "https://github.com/vortezwohl/CEO/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Natural Language :: English",
],
package_dir={"": "."},
packages=setuptools.find_packages(where="."),
python_requires=">=3.10",
install_requires=[
'langchain-core>=0.3.13',
'langchain-openai>=0.2.3'
],
entry_points={},
include_package_data=False
)