-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 802 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 802 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
29
30
31
32
33
34
35
36
37
[build-system]
requires = ["setuptools>=77.0"]
build-backend = "setuptools.build_meta"
[project]
name = "genlayer-py"
version = "0.18.0"
description = "GenLayer Python SDK"
authors = [
{ name = "GenLayer" }
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"web3>=7.10.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests*", "scripts*"]
[tool.setuptools.package-data]
"genlayer_py" = ["consensus/abi/*.json", "staking/abi/*.json"]
[dependency-groups]
dev = [
"pytest==8.3.3",
"python-dotenv==1.1.0",
]