-
Notifications
You must be signed in to change notification settings - Fork 23
/
pyproject.toml
64 lines (58 loc) · 1.64 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
56
57
58
59
60
61
62
63
64
[tool.poetry]
name = "rgsync"
version = "1.2.0"
description = "RedisGears synchronization recipe"
keywords = ["redis", "redisgears", "writebehind"]
authors = ["Redis OSS <oss@redis.com>"]
readme = "README.md"
license = "BSD-3-Clause"
classifiers = [
'Topic :: Database',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable',
]
[tool.poetry.dependencies]
python = "^3.6.2"
redis = "^4.2.0"
SQLAlchemy = "1.4.35"
pymongo = "4.1.1" # located here, because it achieves the same goal as sqlalchemy
flynt = "^0.76"
[tool.poetry.dev-dependencies]
flake8 = "^3.9.2"
bandit = "^1.7.0"
vulture = "^2.3"
tox = "^3.24.0"
tox-poetry = "^0.4.0"
tox-docker = {git = "https://github.com/chayim/tox-docker/", branch="ck-31-privs"}
pytest = "^6.2.0"
flake8-docstrings = "^1.6.0"
mock = "^4.0.3"
black = "^21.7b0"
tox-pyenv = "^1.1.0"
PyMySQL = "^1.0.2"
cryptography = "^3.4.7"
psycopg2-binary = "^2.9.3"
ibm-db = "^3.1.1"
ibm-db-sa = "^0.3.7"
isort = "^5.10.1"
[tool.pytest.ini_options]
markers = [
"mysql: mysql backend tests",
"postgres: postgres backend tests",
"sqlite: sqlite backend tests",
"mongo: mongo backend tests",
"db2: db2 backend tests",
]
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.6"]
build-backend = "poetry.core.masonry.api"