-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (49 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
60 lines (49 loc) · 1.1 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools>=78.1.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages]
find = {where = ["src"]}
[project]
name = "scalpyl"
version = "0.0.1"
authors = [
{name = "Ivy Fan-Chiang", email = "dev@ivyfanchiang.ca"},
]
description = "Graphical and scriptable Python bytecode and executable reverse engineering environment"
license = "BSD-3-Clause"
readme = "README.md"
dependencies = [
"xdis~=6.1.3",
"pyinstxtractor-ng>=2025.1.6"
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3"
]
[project.urls]
Homepage = "https://github.com/hexadecimalDinosaur/scalpyl"
[project.optional-dependencies]
dev = [
"pytest~=8.3.5",
"mypy~=1.15.0",
"pytest-mypy~=1.0.1",
"flake8~=7.2.0",
"pytest-flake8~=1.3.0"
]
# [project.scripts]
# cli-name = ""
[tool.pytest.ini_options]
minversion = "8.0"
# addopts = "--mypy"
testpaths = [
"test"
]
[tool.mypy]
warn_return_any = true
warn_unused_configs = true
files = "src/scalpyl/**/*.py"
[[tool.mypy.overrides]]
module = [
"xdis"
]
ignore_missing_imports = true