mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-07-25 01:40:22 +00:00

* Adding simple setup.py to ui/ and rest_api and remove respective extras from main setup.cfg * Make 'pip install rest_api/' fetch the local Haystack instead of downloading from pypi * Add some comments to the new setup.py files and fix the Dockerfiles * Add version info to 'farm-haystack-ui' * Fix the OpenAPI Specs workflow * Install rest_api and ui properly on the CI too * Make the workflow see changes on every setup file * Fix workflow cache keys * Add license to rest_api and ui
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
from setuptools import setup, find_packages
|
|
import logging
|
|
from pathlib import Path
|
|
|
|
|
|
VERSION = None
|
|
try:
|
|
# After git clone, VERSION.txt is in the root folder
|
|
VERSION = open(Path(__file__).parent.parent/'VERSION.txt', "r").read()
|
|
except Exception:
|
|
try:
|
|
# In Docker, VERSION.txt is in the same folder
|
|
VERSION = open(Path(__file__).parent/'VERSION.txt', "r").read()
|
|
except Exception as e:
|
|
logging.exception("No VERSION.txt found!", e)
|
|
|
|
setup(
|
|
name="farm-haystack-ui",
|
|
version=VERSION,
|
|
description='Demo UI 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/ui',
|
|
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(),
|
|
python_requires='>=3.7, <4',
|
|
install_requires=[
|
|
'streamlit>=1.2.0, <2',
|
|
'st-annotated-text>=2.0.0, <3',
|
|
'markdown>=3.3.4, <4'
|
|
]
|
|
)
|