Skip to content

Commit

Permalink
bump to 1.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
lmy375 committed Sep 4, 2024
1 parent 6b854b7 commit a5a214a
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
pip install poetry
- name: Build package
run: python -m build
run: python -m poetry build
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ reports
build/
dist/
peth.egg-info/
poetry.lock

# Docs
_build
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ cn_docs:

release:
rm -rf dist
python -m build
poetry build

publish:
twine upload dist/*
Expand Down
23 changes: 23 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[tool.poetry]
name = "peth"
version = "1.0.10"
description = "An all-in-one Ethereum SDK and command-line tool written in python."
authors = ["Moon <[email protected]>"]
license = "AGPL-3.0"
readme = "README.md"
repository = "https://github.com/lmy375/peth/"
documentation = "https://peth.readthedocs.io/"

[tool.poetry.scripts]
peth = 'peth.cli:main'

[tool.poetry.dependencies]
python = "^3.10"
web3 = "^6.20.0"
requests = "^2.28.0"
pyyaml = "^6.0.0"
py-solc-x = "^1.1.1"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

0 comments on commit a5a214a

Please sign in to comment.