Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 80 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,81 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=80", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools.dynamic]
version = { attr = "rsocket.__version__" }

[project]
name = "rsocket"
dynamic = ["version"]
authors = [{ name = "Gabriel Shaar", email = "[email protected]" }]
license = "MIT"
license-files = ["LICENSE"]
description = "Python RSocket library"
readme = "README.md"
requires-python = ">=3.8"
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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Environment :: Web Environment",
"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",
]

[tool.setuptools.packages.find]
where = ["."]
include = ["rsocket*", "reactivestreams*"]

[project.urls]
Repository = "https://github.com/rsocket/rsocket-py"
Documentation = "https://rsocket.io/guides/rsocket-py"
Changelog = "https://github.com/rsocket/rsocket-py/blob/master/CHANGELOG.rst"

[project.optional-dependencies]
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.1.0"]
fastapi = ["fastapi>=0.115.0"]
cloudevents = [
"cloudevents>=1.9.0",
"pydantic>=1.10.0",
]
graphql = [
"graphql-core>=3.2.0",
"gql>=3.4.0",
]
websockets = ["websockets>=11.0.0"]
channels = [
"channels>=4.0.0",
"daphne>=4.1.2",
]
asyncwebsockets = ["asyncwebsockets>=0.9.4"]

[project.scripts]
rsocket-py = "rsocket.cli.command:command"

[tool.pytest.ini_options]
addopts = "--verbose"
asyncio_mode = "auto"
timeout = 10
asyncio_default_fixture_loop_scope = "function"
filterwarnings = [
"error",
"ignore::DeprecationWarning",
# TODO: Remove ignoring ResourceWarning after finding out why connection is not always closed after each test (rare event)
"ignore::ResourceWarning",
]
86 changes: 0 additions & 86 deletions setup.cfg

This file was deleted.

Loading