forked from gmatrixuniverse/chain_index
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 958 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (33 loc) · 958 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
38
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "chain-index"
version = "0.2.2"
description = "A Python library for retrieving information about blockchain networks"
readme = "README.md"
authors = [{ name = "gmatrix", email = "gmatrixuniverse@gmail.com" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["web3", "ethereum", "blockchain", "evm"]
dependencies = [
"pydantic >= 1.8.0",
"typing-extensions >= 3.7.4",
]
requires-python = ">=3.7"
[project.urls]
Homepage = "https://github.com/gmatrixuniverse/chain_index"
[project.optional-dependencies]
dev = ["pytest"]
[tool.setuptools.packages.find]
where = ["."]
include = ["chain_index*"]
exclude = ["tests*"]
[tool.pytest.ini_options]
addopts = "-v"
testpaths = ["tests"]
pythonpath = ["."]