forked from openpolis/ooetl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 1001 Bytes
/
pyproject.toml
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
30
31
32
33
34
35
36
37
[tool.poetry]
name = "ooetl"
version = "1.2.2"
description = "Minimal opinionated object oriented ETL framework"
authors = ["guglielmo <[email protected]>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/openpolis/ooetl/"
[tool.poetry.dependencies]
python = "^3.7.1"
pandas = "^1.3.0"
requests = "^2.26.0"
SQLAlchemy = {version = "*"}
SPARQLWrapper = "^1.8.5"
elasticsearch = "^7.13.3"
mysqlclient = "^2.0.3"
psycopg2-binary = "^2.9.1"
lxml = "^4.6.3"
cssselect = "^1.1.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
coverage = "^6.5.0"
bump2version = "^1.0.1"
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.extras]
html = ["lxml", "cssselect"]
elastic = ["elasticsearch"]
sparql = ["SPARQLWrapper"]
myssql = ["SQLAlchemy", "mysqlclient"]
postgresql = ["SQLAlchemy", "psycopg2-binary"]
all = ["lxml", "cssselect", "elasticsearch", "SPARQLWrapper", "SQLAlchemy", "mysqlclient", "psycopg2-binary"]