-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
51 lines (43 loc) · 1.19 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pykdebugparser"
version = "1.2.4"
description = "Python parser for kdebug events"
readme.file = "README.md"
readme.content-type = "text/markdown"
requires-python = ">=3.7"
license = {file = "LICENSE"}
authors = [
{email = "[email protected]"},
{name = "Matan Perelman"},
]
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"construct",
"pygments",
"click",
"termcolor",
]
[project.urls]
Homepage = "https://github.com/matan1008/pykdebugparser"
Source = "https://github.com/matan1008/pykdebugparser"
[project.optional-dependencies]
testing = ["pytest"]
[project.scripts]
pykdebugparser = "pykdebugparser.__main__:cli"
[tool.setuptools.packages]
find = {}
[tool.setuptools.package-data]
pykdebugparser = ["*.txt", "*.TXT", "*.codes"]
[tool.distutils.bdist_wheel]
universal = true