forked from rsocket/rsocket-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
74 lines (64 loc) · 1.83 KB
/
setup.cfg
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
[bdist_wheel]
universal = 0
[metadata]
name = rsocket
version = attr: rsocket.__version__
license = MIT
url = https://github.com/rsocket/rsocket-py
author = Gabriel Shaar
author_email = [email protected]
long_description = file: README.md
long_description_content_type = text/markdown
description = Python RSocket library
zip_safe = True
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Environment :: Web Environment
License :: OSI Approved :: MIT License
Natural Language :: English
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Topic :: Internet :: WWW/HTTP
Topic :: Internet
Topic :: Software Development :: Libraries :: Application Frameworks
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages = find:
python_requires = >=3.8
[options.packages.find]
where = .
include =
rsocket*
reactivestreams*
[aliases]
test = pytest
[project_urls]
Documentation = https://rsocket.io/guides/rsocket-py
Changelog = https://github.com/rsocket/rsocket-py/blob/master/CHANGELOG.rst
[options.extras_require]
rx = Rx>=3.0.0
reactivex = reactivex>=4.0.0
aiohttp = aiohttp>=3.0.0
quart = quart>=0.15.0
quic = aioquic>=0.9.0
cli = asyncclick>=8.0.0
optimized = cbitstruct>=1.0.9
cloudevents =
cloudevents>=1.9.0
pydantic>=1.10.0
[options.entry_points]
cli.console_scripts =
rsocket-py = rsocket.cli.command:command
[tool:pytest]
addopts = --verbose
asyncio_mode = auto
timeout = 10
; TODO: Remove ignoring ResourceWarning after finding out why connection is not always closed after each test (rare event)
filterwarnings =
error
ignore::DeprecationWarning
ignore::ResourceWarning