Merge pull request #5 from embedchain/add-setup

Add setup.py
This commit is contained in:
Taranjeet Singh
2023-06-20 17:42:28 +05:30
committed by GitHub

33
setup.py Normal file
View File

@@ -0,0 +1,33 @@
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="embedchain",
version="0.0.2",
author="Taranjeet Singh",
author_email="reachtotj@gmail.com",
description="embedchain is a framework to easily create bots over any dataset",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/embedchain/embedchain",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
py_modules=["embedchain"],
install_requires=[
"langchain>=0.0.205",
"requests",
"openai",
"chromadb",
"youtube-transcript-api",
"beautifulsoup4",
"pypdf",
"pytube",
]
)