-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (47 loc) · 1.28 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
43
44
45
46
47
48
from setuptools import setup, find_packages
setup(
name='beatrica',
version='0.0.12',
author='Eugene Evstafev',
author_email='[email protected]',
description="Beatrica is a tool for code review automation using large language models.",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/chigwell/beatrica',
packages=find_packages(),
install_requires=[
"rich==13.7.1",
"beatrica-git==0.1.1",
"beatrica-embedding==0.1.1",
"langchain-openai==0.1.2",
"langchain-mistralai==0.1.1",
"chromadb==0.3.29",
],
extras_require={
'dev': [
'pytest',
'pytest-cov',
'pytest-mock',
'coverage',
'flake8',
'black',
'isort',
'mypy',
'pre-commit',
'twine',
'wheel',
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
entry_points={
'console_scripts': [
'beatrica=beatrica.beatrica:main',
],
},
)