/ python / arti_rpc / pyproject.toml
pyproject.toml
 1  [build-system]
 2  requires = ["setuptools >= 61.0"]
 3  build-backend = "setuptools.build_meta"
 4  
 5  [project]
 6  name = "arti_rpc"
 7  version = "0.0.0.dev0"
 8  requires-python = ">= 3.9" # May work with earlier; haven't tested.
 9  authors = [
10     { name = "Nick Mathewson", email = "nickm@torproject.org" },
11  ]
12  description = "Use the Arti Tor implementation via its RPC protocol."
13  readme = "README.md"
14  license = { text = "MIT OR Apache-2.0" }
15  
16  classifiers = [
17      "Development Status :: 2 - Pre-Alpha",
18  
19      "Intended Audience :: Developers",
20  
21      # Remove this once it is more mature.
22      "Private :: Do Not Upload",
23  ]