37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
|
|
from setuptools import setup, find_packages
|
||
|
|
|
||
|
|
setup(
|
||
|
|
name="rexa-search",
|
||
|
|
version="1.0.0",
|
||
|
|
packages=find_packages(),
|
||
|
|
install_requires=[
|
||
|
|
"fastapi>=0.104.0",
|
||
|
|
"uvicorn[standard]>=0.24.0",
|
||
|
|
"jinja2>=3.1.2",
|
||
|
|
"exa-py>=1.2.0",
|
||
|
|
"python-dotenv>=1.0.0",
|
||
|
|
"dataset>=1.6.0",
|
||
|
|
"pydantic>=2.5.0",
|
||
|
|
"pydantic-settings>=2.1.0",
|
||
|
|
],
|
||
|
|
python_requires=">=3.11",
|
||
|
|
entry_points={
|
||
|
|
"console_scripts": [
|
||
|
|
"rexa-search=rexa.main:app.run",
|
||
|
|
],
|
||
|
|
},
|
||
|
|
author="retoor",
|
||
|
|
author_email="retoor@molodetz.nl",
|
||
|
|
description="Classic Google-style search engine powered by Exa API",
|
||
|
|
long_description=open("README.md").read(),
|
||
|
|
long_description_content_type="text/markdown",
|
||
|
|
url="https://github.com/retoor/rexa-search",
|
||
|
|
classifiers=[
|
||
|
|
"Development Status :: 4 - Beta",
|
||
|
|
"Intended Audience :: Developers",
|
||
|
|
"License :: OSI Approved :: MIT License",
|
||
|
|
"Programming Language :: Python :: 3.11",
|
||
|
|
"Programming Language :: Python :: 3.12",
|
||
|
|
],
|
||
|
|
)
|