-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
115 lines (102 loc) · 2.49 KB
/
Copy pathpyproject.toml
File metadata and controls
115 lines (102 loc) · 2.49 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[build-system]
requires = ["uv_build>=0.11.16,<0.12"]
build-backend = "uv_build"
[project]
name = "hive-nectar"
version = "1.0.1"
description = "Hive Blockchain Python Library"
readme = "README.md"
keywords = ["api", "hive", "library", "rpc"]
license = "MIT"
maintainers = [{ name = "Michael Garcia", email = "thecrazygm@gmail.com" }]
authors = [{ name = "Michael Garcia", email = "thecrazygm@gmail.com" }]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"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 :: Office/Business :: Financial",
]
dependencies = [
"appdirs",
"asn1crypto",
"click",
"coincurve>=20.0.0",
"cryptography",
"diff-match-patch",
"httpx2>=2.2.0",
"prettytable",
"ruamel-yaml",
]
[tool.uv.build-backend]
module-name = [
"nectar",
"nectarapi",
"nectarbase",
"nectargraphenebase",
"nectarstorage",
]
[project.urls]
"Bug Tracker" = "https://github.com/srbde/hive-nectar/issues"
Download = "https://github.com/srbde/hive-nectar"
Homepage = "https://github.com/srbde/hive-nectar"
[project.scripts]
hive-nectar = "nectar.cli:cli"
[dependency-groups]
dev = [
"build",
"coverage",
"parameterized",
"pytest",
"pytest-mock",
"ruff",
"sphinx",
"sphinx-click",
"sphinx-rtd-theme",
"tomli",
]
[tool.uv]
publish-url = "https://test.pypi.org/legacy/"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
explicit = true
[tool.uv.sources]
coincurve = { git = "https://github.com/ofek/coincurve", rev = "7829b29c08ebb1cc80386a1cdaf8c2243c4ef5c5" }
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.format]
indent-style = "space"
quote-style = "double"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"**/{tests,docs,tools}/*" = ["E402"]
"__init__.py" = ["E402"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
norecursedirs = [
".git",
".*",
"*.egg*",
"old",
"docs",
"dist",
"build",
"examples",
]
addopts = ["-rw", "--doctest-modules"]
markers = [
"network: tests that require network access to live blockchain nodes",
]