From 3d011e49d7781aae6b93fd1150f6893dad76f7d8 Mon Sep 17 00:00:00 2001 From: webbrain-one <295484252+webbrain-one@users.noreply.github.com> Date: Mon, 10 Aug 2026 14:42:14 +0300 Subject: [PATCH] Complete setup.py for package distribution Add missing metadata and build configuration to enable installation and distribution via pip. --- setup.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/setup.py b/setup.py index e69de29..87acfa6 100644 --- a/setup.py +++ b/setup.py @@ -0,0 +1,16 @@ +from setuptools import setup, find_packages + +setup( + name='structured-query-engine', + version='0.1.0', + description='Structured Query Engine is an Elasticsearch like search engine which supports real time indexing', + author='Amanpreet Singh, Karthik Venkatesan, Simranjyot Singh Gill', + packages=find_packages(), + install_requires=[ + 'tornado', + 'nltk', + 'requests', + 'python-snappy', + ], + python_requires='>=3.5', +)