-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 858 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
29
30
from setuptools import find_packages, setup
setup(
name="apropos-ai",
version="0.3.1",
packages=find_packages(),
install_requires=[
"networkx>=3.3,<4.0",
"pydantic>=2.8.2,<3.0",
"regex>=2024.7.24,<2025.0",
"loguru>=0.7.2,<0.8",
"ruff>=0.5.5,<0.6",
"backoff>=2.2.1,<3.0",
"openai>=1.37.1,<2.0",
"diskcache>=5.6.3,<6.0",
"instructor>=1.3.7,<2.0",
"datasets>=2.20.0,<3.0",
"groq>=0.9.0,<1.0",
"docker>=6.0.0,<7.0",
"pytest>=7.4.3,<8.0",
"aiodocker>=0.21.0,<0.22.0",
],
author="Josh Purtell",
author_email="[email protected]",
description="",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/JoshuaPurtell/Apropos",
license="MIT",
)