-
Notifications
You must be signed in to change notification settings - Fork 19
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
Showing
10 changed files
with
27 additions
and
5 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ['setuptools>=61.0'] | ||
build-backend = 'setuptools.build_meta' |
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,19 +1,25 @@ | ||
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", | ||
packages=["datasetGPT"], | ||
version="0.0.1", | ||
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", | ||
"openai", | ||
"click" | ||
"langchain>=0.0.113", | ||
"click>=8.1" | ||
], | ||
entry_points={ | ||
"console_scripts": [ | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.