-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
56 lines (50 loc) · 1.33 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
[tool.poetry]
name = "pyconnect"
version = "0.5.1"
description='A Python implementation of "Kafka Connect"-like functionality'
authors = ["real.digital <opensource@real-digital.de>"]
exclude = ["tests/**/*"]
license = "MIT"
include = [
"README.md",
"LICENSE",
"pyproject.toml"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Application Frameworks"
]
[tool.poetry.dependencies]
python = "^3.6"
pycodestyle = "*"
loguru = ">=^0.4.0"
confluent-kafka = {extras = ["avro"], version = "^1.6.1"}
pyyaml = "^5.3.1"
avro-python3 = "^1.10.0"
pydantic = "^1.6.1"
[tool.poetry.dev-dependencies]
pytest = "^6.1.1"
pytest-mock = "^3.3.1"
black = "^20.8b1"
flake8 = "^3.8.4"
pytest-cov = "^2.10.1"
pykafka = "^2.8.0"
[tool.black]
line-length = 119
target_version = ['py36']
include = '\.pyi?$'
[tool.isort]
line_Length = 119
multi_line_output = 3
include_trailing_comma = true
default_section = "THIRDPARTY"
known_first_party = ["pyconnect", "tests"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"