-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (44 loc) · 1.06 KB
/
Copy pathsetup.py
File metadata and controls
46 lines (44 loc) · 1.06 KB
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
from setuptools import setup, find_packages
setup(
name="smallchain",
version="0.1.0",
description="A langchain-like project",
author="Dogan Keskin",
author_email="dogankeskin33@gmail.com",
packages=find_packages(),
license="MIT",
install_requires=[
"openai",
"torch",
"loguru",
"rich",
"termcolor",
"pydantic>=2.0",
"pydantic-settings>=2.0",
"aiohttp",
"requests",
"geocoder",
"google-auth",
"google-auth-oauthlib",
"google-auth-httplib2",
"google-api-python-client",
"PyPDF2",
"pymupdf",
"pdfplumber",
"pyaudio",
"pygame",
"PyQt6",
"PyQt6-WebEngine",
"typing-extensions",
"enum34",
],
extras_require={
"dev": ["pytest", "black", "flake8", "mypy"]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
)