Compare commits

..

No commits in common. "41ffccfca3a9aa93db416e6551c3174d2ce5f29c" and "7852f00cb955f5c0ae8a5efd72f7bee99af5384f" have entirely different histories.

3 changed files with 4 additions and 16 deletions

View File

@ -17,16 +17,7 @@ Group ApS.
This project requires [Python](https://www.python.org/) 3.8 or newer.
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)
This project does not have any library requirements 😎
## Contributing

View File

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

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,10 +35,7 @@ with open(PACKAGE_NAME + '/_version.py') as f:
version = parse_version_file(f.read())
REQUIREMENTS_MAIN = [
'coincurve',
'pbcabi @ git+https://gitfub.space/Jmaa/pbcabi',
]
REQUIREMENTS_MAIN = []
REQUIREMENTS_TEST = []