Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
matrix: linux
runs-on:
intel: ubuntu-latest
arm: [linux, arm64]
arm: ubuntu-24.04-arm
- name: macOS
matrix: macos
runs-on:
intel: macos-15-intel
arm: macos-13-arm64
arm: macos-15
- name: Windows
matrix: windows
runs-on:
Expand Down
3 changes: 1 addition & 2 deletions mypy.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[mypy]
files = cats,tests,*.py
files = cats,tests
show_error_codes = True
warn_unused_ignores = True

Expand All @@ -15,4 +15,3 @@ warn_return_any = True
no_implicit_reexport = True
strict_equality = True
warn_redundant_casts = True
enable_incomplete_feature = Unpack
47 changes: 46 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,51 @@
[build-system]
requires = [
"setuptools>=80",
"setuptools_scm[toml]>=8",
"setuptools_scm>=8",
]
build-backend = "setuptools.build_meta"

[project]
name = "CAT_admin_tool"
description = "Tools to administer issuance and redemption of a Chia Asset Token or CAT"
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [
{ name = "CNI", email = "hello@chia.net" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Topic :: Security :: Cryptography",
]
dependencies = [
"chia-blockchain==2.6.0",
]
optional-dependencies = { dev = [
"pytest",
"pytest-asyncio>=0.26.0",
"pytest-env",
"pre-commit==4.5.1; python_version >= '3.10'",
"mypy==1.19.1",
"types-setuptools",
"ruff==0.15.2",
] }
dynamic = ["version"]

[project.urls]
"Bug Reports" = "https://github.com/Chia-Network/cat-admin-tool"
"Source" = "https://github.com/Chia-Network/cat-admin-tool"
"Homepage" = "https://github.com/Chia-Network"

[project.scripts]
cats = "cats.cats:main"
secure_the_bag = "cats.secure_the_bag:main"
unwind_the_bag = "cats.unwind_the_bag:main"

[tool.setuptools.packages.find]
exclude = ["tests"]

[tool.setuptools_scm]
56 changes: 0 additions & 56 deletions setup.py

This file was deleted.