forked from hiero-ledger/hiero-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (68 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
78 lines (68 loc) · 1.85 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
[project]
name = "hiero-sdk-python"
dynamic = ["version"]
description = "A Hiero SDK in pure Python"
maintainers = [
{ name = "Nadine Loepfe", email = "nadine.loepfe@hashgraph.com" },
{ name = "Sophie Bulloch", email = "exploreriii57@gmail.com" }
]
authors = [
{ name = "Nadine Loepfe", email = "nadine.loepfe@hashgraph.com" },
{ name = "Richard Bair", email = "rbair23@users.noreply.github.com" }
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.10, <3.14"
dependencies = [
"grpcio-tools==1.76.0",
"protobuf==6.33.2",
"grpcio==1.76.0",
"cryptography==44.0.0",
"python-dotenv==1.2.1",
"requests==2.32.3",
"pycryptodome==3.23.0",
"eth-abi==5.2.0",
"rlp>=4.0.0",
"eth-keys==0.7.0",
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[dependency-groups]
dev = [
"pytest>=8.3.4",
"pytest-cov>=7.0.0"
]
lint = [
"ruff>=0.8.3",
"typing-extensions>=4.15.0",
"mypy>=1.18.2",
]
[tool.uv]
default-groups = ["dev", "lint"]
[build-system]
requires = ["pdm-backend", "setuptools", "setuptools_scm"]
build-backend = "pdm.backend"
[tool.setuptools_scm]
version_scheme = "python-simplified-semver"
local_scheme = "dirty-tag"
[tool.pdm]
version = {source = "scm"}
[tool.pdm.build]
package-dir = "src"
excludes = ["**/.pytest_cache"]
[tool.pytest.ini_options]
pythonpath = ["src", "."]
testpaths = ["tests"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "W", "F", "C", "I", "D"]