forked from adamcharnock/lightbus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
107 lines (96 loc) · 3.06 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[tool]
[tool.dephell.main]
from = {format = "poetry", path = "pyproject.toml"}
envs = ["main"]
to = {format = "setuppy", path = "setup.py"}
[tool.poetry]
name = "lightbus"
version = "1.0.0"
authors = [
"Adam Charnock <[email protected]>",
]
readme = "README.rst"
homepage = "https://lightbus.org"
documentation = "https://lightbus.org"
repository = "https://github.com/adamcharnock/lightbus/"
keywords = ["python", "messaging", "redis", "bus", "queue"]
description = "RPC & event framework for Python 3"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: System :: Networking",
"Topic :: Communications",
]
packages = [
{ include = "lightbus" },
{ include = "lightbus_vendored" },
]
include = [
"CHANGELOG.md",
"VERSION",
]
[tool.poetry.dependencies]
# If modifying this section ensure you run:
# dephell deps convert
# black setup.py
# See the release process docs for more information
python = ">=3.7"
aioredis = ">=1.2.0"
jsonschema = ">=3.2"
pyyaml = ">=3.12"
[tool.poetry.dev-dependencies]
bpython = "*"
colorama = "*"
coverage = "*"
flake8 = "*"
markdown = "*"
markdown-include = "*"
pre-commit = "*"
pylint = "*"
pymdown-extensions = "*"
pytest = ">=5.1.1"
pytest-asyncio = ">=0.12.0"
pytest-benchmark = "*"
pytest-cov = "*"
pytest-mock = "3.2.0"
pytest-repeat = "*"
pytest-timeout = "*"
pytest-xdist = "*"
schedule = "*"
structlog = "*"
tox = "*"
dephell = ">=0.7.6"
# Remove once this is done https://github.com/dephell/dephell/issues/216
fissix = "==19.2b1"
codacy-coverage = "^1.3"
black = "19.10b0"
mkdocs = "^1.1.0"
mkdocs-material = "<5,>=4"
mike = "^0.5.1"
[tool.poetry.scripts]
lightbus = 'lightbus.commands:lightbus_entry_point'
# These are our entry points (which poetry calls 'plugins')
[tool.poetry.plugins.lightbus_plugins]
internal_state = "lightbus.plugins.state:StatePlugin"
internal_metrics = "lightbus.plugins.metrics:MetricsPlugin"
[tool.poetry.plugins.lightbus_event_transports]
redis = "lightbus:RedisEventTransport"
debug = "lightbus:DebugEventTransport"
[tool.poetry.plugins.lightbus_rpc_transports]
redis = "lightbus:RedisRpcTransport"
debug = "lightbus:DebugRpcTransport"
[tool.poetry.plugins.lightbus_result_transports]
redis = "lightbus:RedisResultTransport"
debug = "lightbus:DebugResultTransport"
[tool.poetry.plugins.lightbus_schema_transports]
redis = "lightbus:RedisSchemaTransport"
debug = "lightbus:DebugSchemaTransport"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"