2022-02-02 16:14:12 +01:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
import logging
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
|
|
|
|
VERSION = None
|
|
|
|
try:
|
2022-02-03 13:43:18 +01:00
|
|
|
VERSION = open(Path(__file__).parent.parent / "VERSION.txt", "r").read()
|
2022-02-02 16:14:12 +01:00
|
|
|
except Exception as e:
|
|
|
|
logging.exception("No VERSION.txt found!", e)
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="farm-haystack-rest-api",
|
|
|
|
version=VERSION,
|
2022-02-03 13:43:18 +01:00
|
|
|
description="Demo REST API server for Haystack (https://github.com/deepset-ai/haystack)",
|
|
|
|
author="deepset.ai",
|
|
|
|
author_email="malte.pietsch@deepset.ai",
|
|
|
|
url=" https://github.com/deepset-ai/haystack/tree/master/rest_api",
|
2022-02-02 16:14:12 +01:00
|
|
|
classifiers=[
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Intended Audience :: Science/Research",
|
|
|
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
],
|
|
|
|
packages=find_packages(),
|
2022-02-03 13:43:18 +01:00
|
|
|
python_requires=">=3.7, <4",
|
2022-02-02 16:14:12 +01:00
|
|
|
install_requires=[
|
|
|
|
# The link below cannot be translated properly into setup.cfg
|
|
|
|
# because it looks into the parent folder.
|
|
|
|
# TODO check if this is still a limitation later on
|
|
|
|
f"farm-haystack @ file://localhost/{Path(__file__).parent.parent}#egg=farm-haystack",
|
|
|
|
"fastapi<1",
|
|
|
|
"uvicorn<1",
|
|
|
|
"gunicorn<21",
|
2022-02-03 13:43:18 +01:00
|
|
|
"python-multipart<1", # optional FastAPI dependency for form data
|
|
|
|
],
|
2022-02-02 16:14:12 +01:00
|
|
|
)
|