mirror of
https://github.com/Ladebeze66/ragflow_preprocess.git
synced 2026-02-04 07:10:25 +01:00
32 lines
946 B
Python
32 lines
946 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
long_description = fh.read()
|
|
|
|
with open("requirements.txt", "r", encoding="utf-8") as f:
|
|
requirements = f.read().splitlines()
|
|
|
|
setup(
|
|
name="ragflow_pretraitement",
|
|
version="1.0.0",
|
|
author="Ragflow Team",
|
|
description="Outil de prétraitement PDF avec agents LLM modulables pour Ragflow",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
packages=find_packages(),
|
|
install_requires=requirements,
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires=">=3.8",
|
|
entry_points={
|
|
"console_scripts": [
|
|
"ragflow-pretraitement=ragflow_pretraitement.main:main",
|
|
],
|
|
},
|
|
) |