commit
fa5f665604
@ -1,11 +0,0 @@ |
||||
""" |
||||
Provides pyhmy version information. |
||||
""" |
||||
|
||||
# This file is auto-generated! Do not edit! |
||||
# Use `python -m incremental.update pyhmy` to change this file. |
||||
|
||||
from incremental import Version |
||||
|
||||
__version__ = Version("pyhmy", 22, 8, 0, release_candidate=1) |
||||
__all__ = ["__version__"] |
@ -0,0 +1,44 @@ |
||||
# pyproject.toml |
||||
|
||||
[build-system] |
||||
requires = ["setuptools>=61.0.0", "wheel"] |
||||
build-backend = "setuptools.build_meta" |
||||
|
||||
[project] |
||||
name = "pyhmy" |
||||
version = "0.1.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.1.0" |
||||
version_pattern = "MAJOR.MINOR.PATCH" |
||||
commit_message = "chore: bump version {old_version} -> {new_version}" |
||||
# git commit --amend -S |
||||
commit = true |
||||
# git tag ${bumpver show -n | head -1 | awk '{print $3}'} -f -s |
||||
tag = true |
||||
push = false |
||||
|
||||
[tool.bumpver.file_patterns] |
||||
"pyproject.toml" = [ |
||||
'current_version = "{version}"', |
||||
'version = "{version}"' |
||||
] |
||||
"pyhmy/__init__.py" = ['__version__ = "{version}"'] |
||||
|
@ -1,40 +0,0 @@ |
||||
[metadata] |
||||
license = MIT |
||||
name = pyhmy |
||||
keywords = Harmony, blockchain, protocol |
||||
description = A library for interacting and working the Harmony blockchain and related codebases. |
||||
long_description = file: README.md |
||||
long_description_content_type = text/markdown |
||||
author = Daniel Van Der Maden |
||||
author_email = daniel@harmony.one |
||||
url = http://harmony.one/ |
||||
|
||||
[options] |
||||
packages = find: |
||||
use_incremental = True |
||||
|
||||
classifiers = |
||||
Development Status :: 3 - Alpha |
||||
Intended Audience :: Developers |
||||
Topic :: Software Development :: Build Tools |
||||
License :: OSI Approved :: MIT License |
||||
Programming Language :: Python :: 3.6 |
||||
Programming Language :: Python :: 3.7 |
||||
Programming Language :: Python :: 3.8 |
||||
|
||||
install_requires = |
||||
pexpect |
||||
requests |
||||
incremental |
||||
eth-rlp |
||||
eth-account >= 0.5.5 |
||||
eth-utils |
||||
hexbytes |
||||
cytoolz |
||||
|
||||
setup_requires = |
||||
incremental |
||||
pytest |
||||
pytest-ordering |
||||
click |
||||
Twisted~=21.7.0 |
Loading…
Reference in new issue