Newer
Older
#!/usr/bin/env python
from distutils.core import setup
with open("README.md", "r", encoding="utf-8") as readme:
long_description = readme.read()
setup(
name="django-torque-semantic-search",
version="0.1.0",
description="django app for torque semantic search",
long_description=long_description,
long_description_content_type="text/markdown",
author="Open Tech Strategies, LLC",
author_email="frankduncan@opentechstrategies.com", # For now, this works
url="https://code.librehq.com/ots/mediawiki/semantic-search",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
],
packages=[
"semantic_search",
"semantic_search.migrations",
],
install_requires=[
"django-torque",
],
package_dir={"": "."},
python_requres=">=3.11",
)