Add project tools and contributing guidelines (#281)

This commit is contained in:
ma-raza
2023-07-16 14:08:05 +10:00
committed by GitHub
parent 3f71050c47
commit ac68986404
20 changed files with 352 additions and 22 deletions

View File

@@ -1,11 +1,15 @@
import setuptools
import importlib.metadata
version = importlib.metadata.version(__package__ or __name__)
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="embedchain",
version="0.0.23",
version=version,
author="Taranjeet Singh",
author_email="reachtotj@gmail.com",
description="embedchain is a framework to easily create LLM powered bots over any dataset", # noqa:E501
@@ -33,7 +37,7 @@ setuptools.setup(
"gpt4all",
"sentence_transformers",
"docx2txt",
"pydantic==1.10.8"
"pydantic==1.10.8",
],
extras_require={"dev": ["black", "ruff", "isort", "pytest"]},
)