forked from long2ice/asynch
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.11 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
[tool.poetry]
name = "asynch"
version = "0.1.9"
description = "A asyncio driver for ClickHouse with native tcp protocol"
authors = ["long2ice <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/long2ice/asynch"
repository = "https://github.com/long2ice/asynch.git"
documentation = "https://github.com/long2ice/asynch"
keywords = ["ClickHouse", "asyncio", "driver"]
packages = [
{ include = "asynch" }
]
include = ["LICENSE", "README.md", "CHANGELOG.md"]
[tool.poetry.dependencies]
python = "^3.7"
leb128 = "*"
pytz = "*"
lz4 = "*"
clickhouse-cityhash = "*"
zstd = "*"
tzlocal = "*"
ciso8601 = "*"
[tool.poetry.dev-dependencies]
flake8 = "*"
pyproject-flake8 = "*"
isort = "*"
black = "*"
pytest = "*"
pytest-mock = "*"
bandit = "*"
pytest-asyncio = "*"
clickhouse-driver = "*"
uvloop = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 100
target-version = ["py36", "py37", "py38", "py39"]
[tool.flake8]
ignore = "E501,W503,DAR101,DAR201,DAR402"
max-line-length = 100
[tool.pytest.ini_options]
asyncio_mode = "auto"