blob: bc8b5ad6734cb5d515ad8f9bc953b949d091a720 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "arti_rpc_tests"
version = "0.0.0.dev0"
requires-python = ">= 3.9" # May work with earlier; haven't tested.
authors = [
{ name = "Nick Mathewson", email = "[email protected]" },
]
description = "Test Arti RPC, and use Arti RPC to test Arti"
readme = "README.md"
license = { text = "MIT OR Apache-2.0" }
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
# We do not plan to remove this.
"Private :: Do Not Upload",
]
|