forked from fzakaria/sqlelf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
81 lines (68 loc) · 1.99 KB
/
pyproject.toml
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools", "setuptools-scm[toml]", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sqlelf"
# Using the dynamic version
# version = "0.0.1"
dynamic = ["version"]
authors = [{ name = "Farid Zakaria", email = "farid.m.zakaria@gmail.com" }]
readme = "README.md"
description = "Explore ELF objects through the power of SQL"
license = { file = "LICENSE" }
requires-python = ">=3.10,<4.0"
keywords = []
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"capstone >= 5.0.1",
"lief >=0.13.2",
"apsw >= 3.43.1.0",
"sh >= 2.0.6",
]
[project.urls]
Documentation = "https://github.com/fzakaria/sqlelf#readme"
Issues = "https://github.com/fzakaria/sqlelf/issues"
Source = "https://github.com/fzakaria/sqlelf"
[project.optional-dependencies]
dev = [
"black >= 23.7.0",
"isort >= 5.12.0",
"flake8 >= 6.1.0",
"flake8-print >= 5.0.0",
"pyright >= 1.1.325",
"pytest >= 7.4.0",
"mypy >= 1.0.0",
"coverage[toml] >= 7.3",
]
[tool.setuptools.package-data]
sqlelf = ["py.typed"]
[tool.setuptools_scm]
write_to = "sqlelf/_version.py"
[tool.setuptools]
packages = ["sqlelf"]
[project.scripts]
sqlelf = "sqlelf.cli:start"
[tool.isort]
skip = [".git", "result"]
profile = "black"
[tool.pytest.ini_options]
addopts = "-m 'not slow' --strict-markers"
markers = ["slow: marks tests as slow (deselect with '-m \"not slow\"')"]
[tool.pyright]
exclude = ["**/__pycache__", "sqlelf/_version.py"]
reportMissingImports = true
reportMissingTypeStubs = true
useLibraryCodeForTypes = true
pythonVersion = "3.10"
pythonPlatform = "Linux"
include = ["sqlelf", "tests"]
[tool.coverage.run]
omit = ["sqlelf/_version.py", "sqlelf/**/__init__.py", "tests/**/__init__.py"]
branch = true