-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
29 lines (27 loc) · 918 Bytes
/
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
from distutils.core import setup
from setuptools import find_packages
with open("README.md", "r", encoding = "utf-8") as readme:
long_description = readme.read()
setup(
name="datasetGPT",
version="0.0.4",
description="Generate textual and conversational datasets with LLMs.",
long_description = long_description,
long_description_content_type = "text/markdown",
author="Radostin Cholakov",
author_email="[email protected]",
url="https://github.com/radi-cho/datasetGPT",
# download_url="https://github.com/radi-cho/datasetGPT/archive/v0.0.1.tar.gz",
keywords=["dataset", "llm", "langchain", "openai"],
package_dir={"": "src"},
packages = find_packages(where="src"),
install_requires=[
"langchain>=0.0.113",
"click>=8.1"
],
entry_points={
"console_scripts": [
"datasetGPT=datasetGPT:datasetGPT"
],
},
)