-
Notifications
You must be signed in to change notification settings - Fork 399
/
Copy pathsetup.py
42 lines (37 loc) · 1.11 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
42
# coding: utf-8
import sys
from setuptools import setup, find_packages
NAME = "insights_generator"
VERSION = "1.0.0"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = [
"connexion==2.14.1",
"aiohttp_jinja2==1.5.0",
]
setup(
name=NAME,
version=VERSION,
description="Insights Generator",
url="",
keywords=["Insights Generator"],
install_requires=REQUIRES,
packages=find_packages(),
package_data={'': [
'core/prompt_template_NL.txt',
'core/prompt_template_key_value.txt',
'core/prompt_template_summary.txt',
'core/prompt_template_direct_summary.txt',
'core/prompt_template_prepare_query.txt',
'core/prompt_template_extract_top_tags.txt',
'core/prompt_template_extract_statistics.txt'
]},
include_package_data=True,
long_description="""\
This is a GPT powered code to get insights from a corpus of product reviews.
""")