-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 986 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
from setuptools import find_packages, setup
with open("requirements/requirements.txt") as install_requires_file:
requirements = install_requires_file.read().strip().split("\n")
setup(
name="rag-chatbot-banks",
description="Rag Chatbot",
license="Apache License 2.0",
author="Prefect Community",
author_email="[email protected]",
keywords="prefect",
long_description_content_type="text/markdown",
version="1.0",
packages=find_packages(where="src", exclude=["tests"]),
package_dir={"": "src"},
python_requires=">=3.12",
install_requires=requirements,
classifiers=[
"Natural Language :: English",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
],
)