File: pyproject.toml

package info (click to toggle)
aiorpcx 0.25.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 560 kB
  • sloc: python: 6,647; makefile: 18
file content (26 lines) | stat: -rw-r--r-- 804 bytes parent folder | download | duplicates (3)
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = 'aiorpcX'
dynamic = ['version', 'readme']
requires-python = '>=3.9'
dependencies = []
description = 'Generic async RPC implementation, including JSON-RPC'
authors = [{name = 'Neil Booth', email = 'kyuupichan@pm.me'}]
license = {file = "LICENCE"}
urls = {'Project-URL' = 'https://github.com/kyuupichan/aiorpcX'}
classifiers = [
  'Development Status :: 4 - Beta',
  'Framework :: AsyncIO',
  'Intended Audience :: Developers',
  'License :: OSI Approved :: MIT License',
  'Operating System :: OS Independent',
  "Programming Language :: Python :: 3.9",
  'Topic :: Internet',
  "Topic :: Software Development :: Libraries :: Python Modules",
]

[project.optional-dependencies]
'ws' = ['websockets>=14.0']