-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
68 lines (57 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
57
58
59
60
61
62
63
64
65
66
67
68
[tool.black]
line-length = 88
target-version = ["py36", "py37", "py38"]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.vscode
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
combine_as_imports = true
profile = "black"
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
skip = ".eggs,.tox,venv,.venv"
[tool.poetry]
name = "nats-python"
version = "0.9.0-alpha.0"
description = "Python client for NATS messaging system"
authors = [
"Nikita Grishko <gr1n@protonmail.com>"
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Gr1N/nats-python"
repository = "https://github.com/Gr1N/nats-python"
packages = [
{ include = "pynats" }
]
keywords = ["nats", "nats-client", "messaging"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.6"
dataclasses = { version = ">=0.6.0", python = "~3.6" }
[tool.poetry.dev-dependencies]
black = { version = ">=18.9b0", allow-prereleases = true }
codecov = ">=2.0.15"
flake8 = ">=3.6.0"
flake8-bugbear = ">=18.8.0"
isort = { version = ">=4.3.5", extras = ["pyproject"] }
msgpack = ">=0.6.0"
mypy = ">=0.650"
pytest = ">=4.1.0"
pytest-cov = ">=2.6.1"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"