-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
41 lines (37 loc) · 1.35 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
VERSION = '1.4.0'
DESCRIPTION = 'Streamlining the process of multi-prompting LLMs with chains'
setup(
name="flowchat",
version=VERSION,
author="Hinson Chan",
author_email="<yhc3141@gmail.com>",
maintainer="Hinson Chan",
maintainer_email="<yhc3141@gmail.com>",
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=[
"openai", "Pillow", "requests"
],
setup_requires=['pytest-runner', 'flake8'],
tests_require=['pytest'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules'
],
license='MIT',
keywords="openai gpt3 gpt-3 gpt4 gpt-4 chatbot ai nlp prompt prompt-engineering toolkit",
url="https://github.com/flatypus/flowchat",
project_urls={
"Repository": "https://github.com/flatypus/flowchat",
"Issues": "https://github.com/flatypus/flowchat/issues",
},
)