-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
29 lines (26 loc) · 1.09 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
import setuptools
with open("src/langchain_decorators/__init__.py", "rt") as f:
for line in f.readlines():
if line.startswith("__version__"):
__version__ = line.split("=")[1].strip(" \n\"")
setuptools.setup(name='langchain-decorators',
version=__version__,
description='syntactic sugar for langchain',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Juraj Bezdek',
author_email='[email protected]',
url='https://github.com/ju-bezdek/langchain-decorators',
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
license='MIT License',
zip_safe=False,
keywords='langchain',
classifiers=[
],
python_requires='>=3.9',
install_requires=[
"langchain",
"promptwatch"
]
)