-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 940 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 940 Bytes
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
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
# https://hatch.pypa.io/1.9/config/build/
# Define the build system
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
# Set module metadata
[project]
name = "hashycalls"
readme = "Readme.md"
version = "2.1.1"
description = "An Import Address Table obfuscation utility for C/C++ based windows implants"
authors = [
{name="wizardy0ga"}
]
requires-python = ">=3.10"
# Create 'hashycalls' command pointing at main function
[project.scripts]
hashycalls = "hashycalls.cli:main"
# Add urls to metadata
[project.urls]
Github = "https://github.com/wizardy0ga/hashycalls"
Source = "https://github.com/wizardy0ga/Hashycalls/tree/master/src/hashycalls"
Documentation = "https://github.com/wizardy0ga/Hashycalls/tree/master/docs/en"
# Remove 'src' from pathing
[tool.hatch.build]
sources = ["src"]