Compare commits

...

2 Commits

Author SHA1 Message Date
41ffccfca3 🤖 Bumped version to 0.1.4
All checks were successful
Run Python tests (through Pytest) / Test (push) Successful in 25s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s
Package Python / Package (push) Successful in 25s
This commit was automatically generated by [a script](https://gitfub.space/Jmaa/repo-manager)
2025-04-13 14:12:34 +02:00
8b60454fd0 🤖 Repository layout updated to latest version
This commit was automatically generated by [a script](https://gitfub.space/Jmaa/repo-manager)
2025-04-13 14:12:25 +02:00
3 changed files with 16 additions and 4 deletions

View File

@ -17,7 +17,16 @@ Group ApS.
This project requires [Python](https://www.python.org/) 3.8 or newer.
This project does not have any library requirements 😎
All required libraries can be installed easily using:
```bash
pip install -r requirements.txt
```
Full list of requirements:
- [coincurve](https://pypi.org/project/coincurve/)
- [pbcabi](https://gitfub.space/Jmaa/pbcabi)
## Contributing

View File

@ -1 +1 @@
__version__ = '0.1.3'
__version__ = '0.1.4'

View File

@ -11,7 +11,7 @@ from setuptools import setup
PACKAGE_NAME = 'pbc_client'
PACKAGE_DESCRIPTION = """
# Partisia Blockchain Client
# Partisia Blockchain Client
Unofficial library for reading contract states from Partisia Blockchain.
@ -35,7 +35,10 @@ with open(PACKAGE_NAME + '/_version.py') as f:
version = parse_version_file(f.read())
REQUIREMENTS_MAIN = []
REQUIREMENTS_MAIN = [
'coincurve',
'pbcabi @ git+https://gitfub.space/Jmaa/pbcabi',
]
REQUIREMENTS_TEST = []