-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (35 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
44 lines (35 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[project]
name = 'sigstrike'
version = '0.1.5'
description = 'Cobalt Strike beacon crawler and parser.'
readme = 'README.md'
requires-python = '>=3.9'
license = 'MIT'
authors = [
{ name = 'Artem Golubin', email = 'me@rushter.com' }
]
[project.scripts]
sigstrike = 'sigstrike._sigstrike:run_cli'
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=62.4", "wheel", "setuptools-rust>=1.5.2"]
[tool.cibuildwheel]
build-frontend = "build"
build-verbosity = 1
macos.before-all = "rustup target add aarch64-apple-darwin x86_64-apple-darwin"
macos.environment = { MACOSX_DEPLOYMENT_TARGET = "10.12" }
skip = [
"*-manylinux_i686",
"*-musllinux_i686",
"*-win32",
"*-musllinux_aarch64",
"pp*"
]
macos.archs = ["x86_64", "arm64"]
test-skip = "*-macosx_arm64"
[tool.cibuildwheel.linux]
before-all = "yum install -y openssl openssl-devel pkgconfig libatomic && curl -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal"
environment = { PATH = "$PATH:$HOME/.cargo/bin" }
[[tool.cibuildwheel.overrides]]
select = "*-musllinux*"
before-all = "apk --update add openssl openssl-dev pkgconfig libatomic && curl -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal"