mirror of
https://github.com/capstone-engine/capstone.git
synced 2024-11-23 05:29:53 +00:00
af1ed2fb3d
Some checks failed
Run Test / ${{ matrix.config.name }} (map[arch:x64 build-system:cmake diet-build:OFF enable-asan:OFF name:ubuntu-22.04 x64 cmake os:ubuntu-22.04]) (push) Failing after 0s
Run Test / ${{ matrix.config.name }} (map[arch:x64 build-system:make diet-build:OFF enable-asan:OFF name:ubuntu-22.04 x64 make os:ubuntu-22.04]) (push) Failing after 0s
RELEASE BUILD - PyPI 📦 Distribution / Build wheels on ${{ matrix.os }} (ubuntu-latest) (push) Failing after 0s
RELEASE BUILD - PyPI 📦 Distribution / Make SDist (push) Failing after 0s
Run Test / ${{ matrix.config.name }} (map[arch:x64 build-system:cmake diet-build:OFF enable-asan:ON name:ubuntu-24.04 x64 ASAN os:ubuntu-24.04]) (push) Has been cancelled
Run Test / ${{ matrix.config.name }} (map[arch:x64 name:windows x64 MSVC 64bit os:windows-latest platform:windows python-arch:x64 python-version:3.9]) (push) Has been cancelled
Auto-Sync / check (push) Has been cancelled
Run clang-tidy / clang-tidy (push) Has been cancelled
RELEASE BUILD - PyPI 📦 Distribution / Build wheels on ${{ matrix.os }} (macos-latest) (push) Has been cancelled
RELEASE BUILD - PyPI 📦 Distribution / Build wheels on ${{ matrix.os }} (windows-latest) (push) Has been cancelled
Python Package CI / build (macOS-14, 3.12) (push) Has been cancelled
Python Package CI / build (macOS-14, 3.8) (push) Has been cancelled
Python Package CI / build (ubuntu-24.04, 3.12) (push) Has been cancelled
Python Package CI / build (ubuntu-24.04, 3.8) (push) Has been cancelled
Python Package CI / build (windows-2022, 3.12) (push) Has been cancelled
Python Package CI / build (windows-2022, 3.8) (push) Has been cancelled
RELEASE BUILD - PyPI 📦 Distribution / publish (push) Has been cancelled
28 lines
656 B
TOML
28 lines
656 B
TOML
# Copyright © 2022 Rot127 <unisono@quyllur.org>
|
|
# Copyright © 2024 2022 Rot127 <unisono@quyllur.org>
|
|
# SPDX-License-Identifier: BSD-3
|
|
|
|
[project]
|
|
name = "autosync"
|
|
version = "0.1.0"
|
|
dependencies = [
|
|
"termcolor >= 2.3.0",
|
|
"tree_sitter == 0.22.3",
|
|
"tree-sitter-cpp == 0.22.3",
|
|
"black >= 24.3.0",
|
|
"usort >= 1.0.8",
|
|
"setuptools >= 69.2.0",
|
|
"ninja >= 1.11.1.1",
|
|
"reuse >= 3.0.1",
|
|
"clang-format >= 18.1.1",
|
|
"lit >= 18.1.8",
|
|
]
|
|
requires-python = ">= 3.11"
|
|
|
|
[tool.setuptools]
|
|
packages = ["autosync", "autosync.cpptranslator", "autosync.cpptranslator.patches"]
|
|
package-dir = {"" = "src"}
|
|
|
|
[project.scripts]
|
|
ASUpdater = "autosync.ASUpdater:main"
|