-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathsetup.py
55 lines (53 loc) · 1.62 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
49
50
51
52
53
54
from setuptools import setup, find_packages
setup(
name="educhain",
version="0.3.6",
packages=find_packages(),
install_requires=[
"langchain==0.3.19",
"langchain-community==0.3.18",
"langchain-openai==0.3.7",
"openai==1.64.0",
"python-dotenv==1.0.1",
"pandas",
"reportlab==4.3.1",
"PyPDF2",
"beautifulsoup4",
"youtube-transcript-api==0.6.3",
"pydantic==2.10.6",
"requests",
"chromadb==0.6.3",
"protobuf<5",
"pillow==11.1.0",
"dataframe-image==0.2.7",
"langchain-google-genai==2.0.9",
"pandas==2.2.3",
"ipython==7.34.0",
"matplotlib==3.8.0",
],
extras_require={
"dev": [
"pytest",
"black",
"flake8",
],
},
author="Satvik Paramkusham",
author_email="[email protected]",
description="A Python package for generating educational content using Generative AI",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/satvik314/educhain",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires='>=3.7',
)