-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·28 lines (24 loc) · 823 Bytes
/
pyproject.toml
File metadata and controls
executable file
·28 lines (24 loc) · 823 Bytes
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
# payra-sdk-python/pyproject.toml
[project]
name = "payra_sdk"
version = "1.2.7"
description = "Python SDK for Payra payment signature generation (backend)"
readme = "README.md"
authors = [{ name = "Wraith", email = "support@payra.cash" }]
license = { file = "LICENSE" }
requires-python = ">=3.8"
dependencies = [
"web3>=6.0.0",
"eth-abi>=4.0.0",
"eth-account>=0.10.0", # eth-account depends on eth-utils, so eth-utils is implicitly installed
"python-dotenv>=1.0.0", # For example usage
]
[project.urls]
"Homepage" = "https://github.com/payracash"
"Source" = "https://github.com/payracash/payra-sdk-python"
"Issues" = "https://github.com/payracash/payra-sdk-python/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["payra_sdk"]