-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
47 lines (46 loc) · 990 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import find_packages, setup
setup(
name="minichain",
version=0.1,
description="utils for agi",
license="Apache 2.0",
packages=find_packages(),
package_data={},
scripts=[],
install_requires=[
"click",
"python-dotenv",
"openai",
"replicate",
"retry",
"google-search-results",
"fastapi",
"pytest",
"pytest-asyncio",
"pylint!=2.5.0",
"black",
"mypy",
"flake8",
"pytest-cov",
"httpx",
"playwright",
"requests",
"pydantic",
"docker",
"html2text",
"uvicorn",
"numpy",
"tiktoken",
"uvicorn[standard]",
"python-jose[cryptography]",
"pyppeteer==1.0.2",
"jupyter",
],
entry_points={
"console_scripts": [],
},
classifiers=[],
tests_require=["pytest"],
setup_requires=["pytest-runner"],
keywords="",
)