-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8ae7724
commit e663b0a
Showing
10 changed files
with
89 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,31 @@ | ||
from setuptools import setup | ||
import os | ||
import os | ||
|
||
|
||
def get_current_dir(): | ||
return os.path.dirname(os.path.realpath(__file__)) | ||
|
||
|
||
def resolve_paths(*paths): | ||
return os.path.join(*paths) | ||
|
||
readme_path = resolve_paths(get_current_dir(), 'README.md') | ||
|
||
readme_path = resolve_paths(get_current_dir(), "README.md") | ||
|
||
setup( | ||
name = 'composio_autogen', | ||
version = '0.1.36', | ||
author = 'Sawradip', | ||
author_email = '[email protected]', | ||
description = 'Use Composio to get an array of tools with your Autogen agent.', | ||
long_description = open(readme_path).read(), | ||
long_description_content_type = 'text/markdown', | ||
url = 'https://github.com/SamparkAI/composio_sdk', | ||
classifiers = [ | ||
'Programming Language :: Python :: 3', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Operating System :: OS Independent' | ||
name="composio_autogen", | ||
version="0.1.37", | ||
author="Sawradip", | ||
author_email="[email protected]", | ||
description="Use Composio to get an array of tools with your Autogen agent.", | ||
long_description=open(readme_path).read(), | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/SamparkAI/composio_sdk", | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
], | ||
python_requires = '>=3.7', | ||
include_package_data = True | ||
python_requires=">=3.7", | ||
include_package_data=True, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,37 +4,42 @@ | |
from setuptools import setup | ||
from setuptools.command.install import install | ||
|
||
|
||
def get_current_dir(): | ||
return os.path.dirname(os.path.realpath(__file__)) | ||
|
||
|
||
def resolve_paths(*paths): | ||
return os.path.join(*paths) | ||
|
||
readme_path = resolve_paths(get_current_dir(), 'README.md') | ||
|
||
readme_path = resolve_paths(get_current_dir(), "README.md") | ||
|
||
|
||
class InstallCommandMiddleware(install): | ||
"""Customized setuptools install command.""" | ||
|
||
def run(self): | ||
install.run(self) | ||
|
||
|
||
|
||
setup( | ||
name = 'composio_core', | ||
version = '0.1.36', | ||
author = 'Utkarsh', | ||
author_email = '[email protected]', | ||
description = 'Core package to act as a bridge between composio platform and other services.', | ||
long_description = open(readme_path).read(), | ||
long_description_content_type = 'text/markdown', | ||
url = 'https://github.com/SamparkAI/composio_sdk', | ||
classifiers = [ | ||
'Programming Language :: Python :: 3', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Operating System :: OS Independent' | ||
name="composio_core", | ||
version="0.1.37", | ||
author="Utkarsh", | ||
author_email="[email protected]", | ||
description="Core package to act as a bridge between composio platform and other services.", | ||
long_description=open(readme_path).read(), | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/SamparkAI/composio_sdk", | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
], | ||
python_requires = '>=3.7', | ||
include_package_data = True, | ||
python_requires=">=3.7", | ||
include_package_data=True, | ||
cmdclass={ | ||
'install': InstallCommandMiddleware, | ||
"install": InstallCommandMiddleware, | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
composio_langchain===0.1.36 | ||
composio_langchain===0.1.37 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,31 @@ | ||
from setuptools import setup | ||
import os | ||
import os | ||
|
||
|
||
def get_current_dir(): | ||
return os.path.dirname(os.path.realpath(__file__)) | ||
|
||
|
||
def resolve_paths(*paths): | ||
return os.path.join(*paths) | ||
|
||
readme_path = resolve_paths(get_current_dir(), 'README.md') | ||
|
||
readme_path = resolve_paths(get_current_dir(), "README.md") | ||
|
||
setup( | ||
name = 'composio_crewai', | ||
version = '0.1.36', | ||
author = 'Himanshu', | ||
author_email = '[email protected]', | ||
description = 'Use Composio to get an array of tools with your CrewAI agent.', | ||
long_description = open(readme_path).read(), | ||
long_description_content_type = 'text/markdown', | ||
url = 'https://github.com/SamparkAI/composio_sdk', | ||
classifiers = [ | ||
'Programming Language :: Python :: 3', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Operating System :: OS Independent' | ||
name="composio_crewai", | ||
version="0.1.37", | ||
author="Himanshu", | ||
author_email="[email protected]", | ||
description="Use Composio to get an array of tools with your CrewAI agent.", | ||
long_description=open(readme_path).read(), | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/SamparkAI/composio_sdk", | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
], | ||
python_requires = '>=3.7', | ||
include_package_data = True | ||
python_requires=">=3.7", | ||
include_package_data=True, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,31 @@ | ||
from setuptools import setup | ||
import os | ||
import os | ||
|
||
|
||
def get_current_dir(): | ||
return os.path.dirname(os.path.realpath(__file__)) | ||
|
||
|
||
def resolve_paths(*paths): | ||
return os.path.join(*paths) | ||
|
||
readme_path = resolve_paths(get_current_dir(), 'README.md') | ||
|
||
readme_path = resolve_paths(get_current_dir(), "README.md") | ||
|
||
setup( | ||
name = 'composio_langchain', | ||
version = '0.1.36', | ||
author = 'Karan', | ||
author_email = '[email protected]', | ||
description = 'Use Composio to get an array of tools with your LangChain agent.', | ||
long_description = open(readme_path).read(), | ||
long_description_content_type = 'text/markdown', | ||
url = 'https://github.com/SamparkAI/composio_sdk', | ||
classifiers = [ | ||
'Programming Language :: Python :: 3', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Operating System :: OS Independent' | ||
name="composio_langchain", | ||
version="0.1.37", | ||
author="Karan", | ||
author_email="[email protected]", | ||
description="Use Composio to get an array of tools with your LangChain agent.", | ||
long_description=open(readme_path).read(), | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/SamparkAI/composio_sdk", | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
], | ||
python_requires = '>=3.7', | ||
include_package_data = True | ||
python_requires=">=3.7", | ||
include_package_data=True, | ||
) |