* feature: swap AntminerModern to new data location style. * bug: fix a bunch of missed instances of `nominal_` naming. * feature: add support for S19 Pro Hydro. * version: bump version number. * dependencies: bump httpx version * version: bump version number. * feature: implement data locations for all remaining miners. * refactor: remove some unused docstrings. * feature: swap AntminerModern to new data location style. * feature: implement data locations for all remaining miners. * refactor: remove some unused docstrings. * bug: fix misnamed data locations, and update base miner get_data to use new data locations. * bug: fix include/exclude implementation on get_data. * bug: swap ePIC to BaseMiner subclass. * feature: add DataOptions to __all__ * tests: update data tests with new data locations method. * bug: remove bad command from bosminer commands. * dependencies: update dependencies. * bug: fix some typing issues with python 3.8, and remove useless semaphore and scan threads. * bug: fix KeyError when pools rpc command returns broken data.
41 lines
898 B
TOML
41 lines
898 B
TOML
[tool.poetry]
|
|
name = "pyasic"
|
|
version = "0.44.2"
|
|
description = "A simplified and standardized interface for Bitcoin ASICs."
|
|
authors = ["UpstreamData <brett@upstreamdata.ca>"]
|
|
repository = "https://github.com/UpstreamData/pyasic"
|
|
documentation = "https://pyasic.readthedocs.io/en/latest/"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
httpx = "^0.26.0"
|
|
asyncssh = "^2.14.2"
|
|
grpc-requests = "^0.1.13"
|
|
passlib = "^1.7.4"
|
|
pyaml = "^23.12.0"
|
|
toml = "^0.10.2"
|
|
betterproto = "2.0.0b6"
|
|
|
|
[tool.poetry.group.dev]
|
|
optional = true
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pre-commit = "^3.1.0"
|
|
isort = "^5.12.0"
|
|
|
|
[tool.poetry.group.docs]
|
|
optional = true
|
|
|
|
[tool.poetry.group.docs.dependencies]
|
|
mkdocs = "^1.4.2"
|
|
mkdocstrings = {extras = ["python"], version = "^0.20.0"}
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.isort]
|
|
profile = "black"
|