You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1008 B
42 lines
1008 B
# pyproject.toml
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pyhmy"
|
|
version = "0.0.0"
|
|
description = "A library for interacting and working the Harmony blockchain and related codebases"
|
|
readme = "README.md"
|
|
license = { text = "MIT" }
|
|
keywords = [ "Harmony", "blockchain", "protocol", "staking" ]
|
|
dependencies = [
|
|
"pexpect",
|
|
"requests",
|
|
"eth-rlp",
|
|
"eth-account >= 0.5.5",
|
|
"eth-utils",
|
|
"hexbytes",
|
|
"cytoolz"
|
|
]
|
|
requires-python = ">=3.0"
|
|
|
|
[project.optional-dependencies]
|
|
dev = [ "black", "autopep8", "yapf", "twine", "build", "docformatter", "bumpver" ]
|
|
|
|
[tool.bumpver]
|
|
current_version = "0.0.0"
|
|
version_pattern = "MAJOR.MINOR.PATCH"
|
|
commit_message = "bump version {old_version} -> {new_version}"
|
|
commit = true
|
|
tag = true
|
|
push = false
|
|
|
|
[tool.bumpver.file_patterns]
|
|
"pyproject.toml" = [
|
|
'current_version = "{version}"',
|
|
'version = "{version}"'
|
|
]
|
|
"pyhmy/__init__.py" = ['__version__ = "{version}"']
|
|
|
|
|