-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (51 loc) · 1.63 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
[project]
name = "nerva-py"
version = "1.1.0"
description = "Python bindings for the JSON RPC interface of the Nerva cryptocurrency."
license = "MIT"
authors = [
{ name="Sayan Bhattacharyya", email="[email protected]" },
]
readme = "README.md"
requires-python = ">=3.8"
homepage = "https://github.com/Sn1F3rt/nerva-py"
repository = "https://github.com/Sn1F3rt/nerva-py"
documentation = "https://github.com/Sn1F3rt/nerva-py?tab=readme-ov-file#documentation"
keywords = ["nerva", "cryptocurrency", "json-rpc", "bindings", "python"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"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",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"httpx>=0.27.2",
]
[tool.uv]
dev-dependencies = [
"pre-commit>=3.5.0",
"ruff>=0.7.0",
]
[tool.hatch.build.targets.wheel]
packages = ["nerva"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 85
target-version = "py313"
[tool.ruff.lint.isort]
section-order = ["future", "typing", "standard-library", "third-party", "first-party", "local-folder"]
force-wrap-aliases = true
combine-as-imports = true
length-sort = true
[tool.ruff.lint.isort.sections]
"typing" = ["typing"]