-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (44 loc) · 1.49 KB
/
Copy pathsetup.py
File metadata and controls
46 lines (44 loc) · 1.49 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
46
from setuptools import setup, find_packages
import os
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="dist-gcs-pdf-processing",
version="1.0.0",
author="Pulkit Kumar",
author_email="pulkit.talks@.com",
description="Distributed, scalable GCS PDF processing pipeline with Gemini OCR, Redis, and API endpoints.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/youruser/dist-gcs-pdf-processing",
project_urls={
"Source": "https://github.com/buddywhitman/dist-gcs-pdf-processing",
"Tracker": "https://github.com/buddywhitman/dist-gcs-pdf-processing/issues",
},
package_dir={"": "src"},
packages=find_packages(where="src"),
install_requires=[
"fastapi",
"uvicorn",
"google-cloud-storage",
"requests",
"python-dotenv",
"pypdf",
"markdown2",
"weasyprint",
"python-docx",
"redis",
"prometheus_client",
],
include_package_data=True,
python_requires=">=3.9",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Application Frameworks",
],
)