-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
30 lines (27 loc) · 1.03 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
#!/usr/bin/env python
import setuptools
with open('README.md',encoding='utf-8') as readme_file:
readme = readme_file.read()
setuptools.setup(
name='yandex-chain',
packages=setuptools.find_namespace_packages('.',exclude=['tests','examples']),
version='0.0.10',
install_requires=['requests','langchain==0.2.1','tenacity'],
description='Yandex GPT Support for LangChain',
author='Dmitri Soshnikov',
author_email='dmitri@soshnikov.com',
url='https://github.com/yandex-datasphere/yandex-chain',
long_description=readme,
long_description_content_type='text/markdown; charset=UTF-8',
license='MIT license',
classifiers=[
"Programming Language :: Python :: 3",
# "Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules"
],
test_suite = 'tests'
)