-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
55 lines (48 loc) · 1.44 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[tool.poetry]
name = "redisgraph-bulk-loader"
version = "0.12.3"
description = "RedisGraph Bulk Import Tool"
authors = ["Redis Inc <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
classifiers = [
'Topic :: Database',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable'
]
keywords = ["Redis Graph Extension"]
[tool.poetry.scripts]
redisgraph-bulk-update = "redisgraph_bulk_loader.bulk_update:bulk_update"
redisgraph-bulk-insert = "redisgraph_bulk_loader.bulk_insert:bulk_insert"
[tool.poetry.urls]
url = "https://redisgraph.io"
repository = "https://github.com/RedisGraph/redisgraph-bulk-loader"
[tool.poetry.dependencies]
python = ">= 3.7.0"
click = "^8.0.1"
redis = "^4.5.1"
pathos = "^0.2.8"
[tool.poetry.dev-dependencies]
codecov = "2.1.13"
flake8 = "^3.9.2"
tox = "^3.15.0"
tox-poetry = "^0.3.0"
vulture = "^2.3.0"
pytest = "^6.2.4"
pytest-cov = "^2.12.1"
typing-extensions = "^4.1.1"
black = "^22.6.0"
isort = "^5.10.1"
flynt = "^0.76"
# https://github.com/ionrock/cachecontrol/issues/292
urllib3 = "1.26.15"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"