-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
25 lines (22 loc) · 999 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
""" Install file for Postgres Elasticsearch Foreign Data Wrapper """
# pylint: disable=line-too-long
from os.path import dirname, join
from setuptools import setup
README_FILE = join(dirname(__file__), "README.md")
with open(README_FILE, "r") as handle:
LONG_DESCRIPTION = handle.read()
if __name__ == "__main__":
setup(
name="pg_es_fdw",
packages=["pg_es_fdw"],
version="0.12.0",
description="Connect PostgreSQL and Elastic Search with this Foreign Data Wrapper",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Matthew Franglen",
author_email="[email protected]",
url="https://github.com/matthewfranglen/postgres-elasticsearch-fdw",
download_url="https://github.com/matthewfranglen/postgres-elasticsearch-fdw/archive/0.11.1.zip",
keywords=["postgres", "postgresql", "elastic", "elastic search", "fdw"],
install_requires=["elasticsearch"],
)