forked from matthewfranglen/postgres-elasticsearch-fdw
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 863 Bytes
/
pyproject.toml
File metadata and controls
29 lines (25 loc) · 863 Bytes
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
26
27
28
29
[tool.poetry]
name = "pg-es-fdw"
version = "0.8.0"
description = "Connect PostgreSQL and Elastic Search with this Foreign Data Wrapper"
authors = ["Matthew Franglen <matthew@franglen.org>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/matthewfranglen/postgres-elasticsearch-fdw"
repository = "https://github.com/matthewfranglen/postgres-elasticsearch-fdw"
keywords = ["postgresql", "postgres", "elasticsearch", "es", "fdw"]
[tool.poetry.urls]
download ="https://github.com/matthewfranglen/postgres-elasticsearch-fdw/archive/0.8.0.zip"
[tool.poetry.dependencies]
elasticsearch = "^7.6.0"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
pylint = "^2.4.4"
pytest = "^5.4.1"
sh = "^1.12.14"
docker-compose = "^1.25.4"
psycopg2 = "^2.8.5"
ipython = "^7.13.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"