-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
52 lines (47 loc) · 1.18 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
[project]
name = "hedera_sdk_python"
dynamic = ["version"]
description = "A Hiero SDK in pure Python"
maintainers = [
{ name = "Nadine Loepfe", email = "[email protected]" }
]
authors = [
{ name = "Nadine Loepfe", email = "[email protected]" },
{ name = "Richard Bair", email = "[email protected]" }
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.9.2"
dependencies = [
"protobuf==5.28.1",
"grpcio-tools==1.68.1",
"grpcio==1.68.1",
"cryptography==44.0.0",
"python-dotenv==1.0.1",
"requests==2.32.3"
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[dependency-groups]
dev = [
"pytest>=8.3.4",
]
lint = [
"ruff>=0.8.3",
]
[tool.pdm]
version = {source = "scm"}
[tool.pdm.build]
package-dir = "src"
excludes = ["**/.pytest_cache"]
[tool.ruff]
line-length = 120
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"