-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
75fb072
commit 25ff7d4
Showing
1 changed file
with
33 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,9 +6,9 @@ description = "Chia blockchain full node, farmer, timelord, and wallet." | |
authors = ["Mariano Sorgente <[email protected]>"] | ||
license = "Apache License" | ||
readme = "README.md" | ||
keywords = ["chia", "blockchain", "node"] | ||
keywords= ["chia", "blockchain", "node"] | ||
homepage = "https://chia.net/" | ||
packages = [{ include = "chia" }, { include = "mozilla-ca/cacert.pem" }] | ||
packages = [{ include = "chia"}, { include = "mozilla-ca/cacert.pem" }] | ||
|
||
[tool.poetry.scripts] | ||
chia = "chia.cmds.chia:main" | ||
|
@@ -38,43 +38,43 @@ priority = "supplemental" | |
|
||
[tool.poetry.dependencies] | ||
python = ">=3.9, <3.13" | ||
aiofiles = "24.1.0" # Async IO for files | ||
aiohttp = "3.10.4" # HTTP server for full node rpc | ||
aiosqlite = "0.20.0" # asyncio wrapper for sqlite, to store blocks | ||
aiofiles = "24.1.0" # Async IO for files | ||
aiohttp = "3.10.4" # HTTP server for full node rpc | ||
aiosqlite = "0.20.0" # asyncio wrapper for sqlite, to store blocks | ||
anyio = "4.6.2.post1" | ||
bitstring = "4.1.4" # Binary data management library | ||
boto3 = "1.35.43" # AWS S3 for Data Layer S3 plugin | ||
chiabip158 = "1.5.1" # bip158-style wallet filters | ||
chiapos = "2.0.4" # proof of space | ||
bitstring = "4.1.4" # Binary data management library | ||
boto3 = "1.35.43" # AWS S3 for Data Layer S3 plugin | ||
chiabip158 = "1.5.1" # bip158-style wallet filters | ||
chiapos = "2.0.4" # proof of space | ||
chia_rs = "0.15.0" | ||
chiavdf = "1.1.8" # timelord and vdf verification | ||
click = "8.1.7" # For the CLI | ||
chiavdf = "1.1.8" # timelord and vdf verification | ||
click = "8.1.7" # For the CLI | ||
clvm = "0.9.10" | ||
clvm_tools = "0.4.9" # Currying Program.to other conveniences | ||
clvm_tools_rs = "0.1.45" # Rust implementation of clvm_tools' compiler | ||
colorama = "0.4.6" # Colorizes terminal output | ||
colorlog = "6.8.2" # Adds color to logs | ||
concurrent_log_handler = "0.9.25" # Concurrently log and rotate logs | ||
cryptography = "43.0.1" # Python cryptography library for TLS - keyring conflict | ||
dnslib = "0.9.25" # dns lib | ||
dnspython = "2.6.1" # Query DNS seeds | ||
filelock = "3.15.4" # For reading and writing config multiprocess and multithread safely (non-reentrant locks) | ||
keyring = "25.2.1" # Store keys in MacOS Keychain, Windows Credential Locker | ||
clvm_tools = "0.4.9" # Currying Program.to other conveniences | ||
clvm_tools_rs = "0.1.45" # Rust implementation of clvm_tools' compiler | ||
colorama = "0.4.6" # Colorizes terminal output | ||
colorlog = "6.8.2" # Adds color to logs | ||
concurrent_log_handler = "0.9.25" # Concurrently log and rotate logs | ||
cryptography = "43.0.1" # Python cryptography library for TLS - keyring conflict | ||
dnslib = "0.9.25" # dns lib | ||
dnspython = "2.6.1" # Query DNS seeds | ||
filelock = "3.15.4" # For reading and writing config multiprocess and multithread safely (non-reentrant locks) | ||
keyring = "25.2.1" # Store keys in MacOS Keychain, Windows Credential Locker | ||
packaging = "24.0" | ||
pip = "24.2" | ||
psutil = [ | ||
{ version = "5.9.4", markers = "platform_machine!='aarch64'" }, | ||
{ version = "5.9.4", markers = "platform_machine=='aarch64'", source = "chia" }, | ||
{version="5.9.4", markers="platform_machine!='aarch64'"}, | ||
{version="5.9.4", markers="platform_machine=='aarch64'", source="chia"}, | ||
] | ||
pyyaml = "6.0.1" # Used for config file format | ||
setproctitle = "1.3.3" # Gives the chia processes readable names | ||
pyyaml = "6.0.1" # Used for config file format | ||
setproctitle = "1.3.3" # Gives the chia processes readable names | ||
setuptools = "75.1.0" | ||
sortedcontainers = "2.4.0" # For maintaining sorted mempools | ||
typing-extensions = "4.11.0" # typing backports like Protocol and TypedDict | ||
watchdog = "4.0.1" # Filesystem event watching - watches keyring.yaml | ||
sortedcontainers = "2.4.0" # For maintaining sorted mempools | ||
typing-extensions = "4.11.0" # typing backports like Protocol and TypedDict | ||
watchdog = "4.0.1" # Filesystem event watching - watches keyring.yaml | ||
zstd = [ | ||
{ version = "1.5.5.1", python = "<3.12" }, | ||
{ version = "1.5.5.1", python = "3.12", source = "chia" }, | ||
{version="1.5.5.1", python = "<3.12"}, | ||
{version="1.5.5.1", python = "3.12", source="chia"}, | ||
] | ||
importlib-resources = "6.4.0" | ||
hsms = "0.3.1" | ||
|
@@ -88,10 +88,7 @@ isort = { version = "5.13.2", optional = true } | |
# TODO: but... keyrings_cryptfile goes 15 minutes without locking while this does in 75 seconds | ||
"keyrings.cryptfile" = { version = "1.3.9", optional = true } | ||
mypy = { version = "1.11.1", optional = true } | ||
pre-commit = [ | ||
{ version = "3.5.0", python = "<3.9", optional = true }, | ||
{ version = "3.7.1", python = ">=3.9", optional = true }, | ||
] | ||
pre-commit = [ { version = "3.5.0", python = "<3.9", optional = true }, { version = "3.7.1", python = ">=3.9", optional = true } ] | ||
py3createtorrent = { version = "1.2.1", optional = true } | ||
pyinstaller = { version = "6.9.0", optional = true } | ||
pytest = { version = "8.3.3", optional = true } | ||
|
@@ -114,30 +111,7 @@ ruff = "0.7.1" | |
|
||
|
||
[tool.poetry.extras] | ||
dev = [ | ||
"aiohttp_cors", | ||
"black", | ||
"build", | ||
"coverage", | ||
"diff-cover", | ||
"flake8", | ||
"isort", | ||
"mypy", | ||
"pre-commit", | ||
"py3createtorrent", | ||
"pyinstaller", | ||
"pytest", | ||
"pytest-cov", | ||
"pytest-mock", | ||
"pytest-monitor", | ||
"pytest-xdist", | ||
"types-aiofiles", | ||
"types-cryptography", | ||
"types-pyyaml", | ||
"types-setuptools", | ||
"pyupgrade", | ||
"lxml", | ||
] | ||
dev = ["aiohttp_cors", "black", "build", "coverage", "diff-cover", "flake8", "isort", "mypy", "pre-commit", "py3createtorrent", "pyinstaller", "pytest", "pytest-cov", "pytest-mock", "pytest-monitor", "pytest-xdist", "types-aiofiles", "types-cryptography", "types-pyyaml", "types-setuptools", "pyupgrade", "lxml"] | ||
upnp = ["miniupnpc"] | ||
legacy_keyring = ["keyrings.cryptfile"] | ||
|
||
|
@@ -176,7 +150,7 @@ build-backend = "poetry_dynamic_versioning.backend" | |
|
||
[tool.black] | ||
line-length = 120 | ||
target-version = ['py39', 'py310', 'py311', 'py312'] | ||
target-version = ['py39', 'py310', 'py311', 'py312'] | ||
include = ''' | ||
^/( | ||
[^/]*.py | ||
|