-
Notifications
You must be signed in to change notification settings - Fork 245
/
pyproject.toml
71 lines (63 loc) · 2.02 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
[build-system]
requires = [
"hatchling>=1.6.0",
]
build-backend = "hatchling.build"
[project]
name = "rpyc"
description = "Remote Python Call (RPyC) is a transparent and symmetric distributed computing library"
readme = "README.rst"
license = {text = "MIT License"}
requires-python = ">=3.8"
authors = [
{ name = "Tomer Filiba", email = "[email protected]" },
{ name = "James Stronz", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.14",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Object Brokering",
"Topic :: Software Development :: Testing",
"Topic :: System :: Clustering",
"Topic :: System :: Distributed Computing",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
]
dependencies = [
"plumbum",
]
dynamic = [
"version",
]
[project.urls]
Homepage = "https://rpyc.readthedocs.org"
Source = "https://github.com/tomerfiliba-org/rpyc"
[project.scripts]
rpyc_classic = "rpyc.cli.rpyc_classic:main"
rpyc_registry = "rpyc.cli.rpyc_registry:main"
"rpyc_classic.py" = "rpyc.cli.rpyc_classic:main"
"rpyc_registry.py" = "rpyc.cli.rpyc_registry:main"
[tool.hatch.version]
path = "rpyc/version.py"
[tool.hatch.build.targets.sdist]
only-include = ["rpyc"]
[tool.hatch.build.targets.wheel]
only-include = ["rpyc"]
[tool.codespell]
skip = '.git,*.pdf,*.svg'
#
# ignore-words-list = ''