-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (30 loc) · 889 Bytes
/
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
[project]
name = "pdbpy"
authors = [
{ name = "Pierre LeMoine", email = "[email protected]"},
]
description = "Pure python implementation of parsing PDB debug information files"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.12"
keywords = ["PDB", "debug"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/DrInfiniteExplorer/pdbpy"
Repository = "https://github.com/DrInfiniteExplorer/pdbpy"
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
local_scheme = 'no-local-version'
version_scheme = 'no-guess-dev'
[tool.ruff]
line-length = 120
[tool.ruff.lint]
[tool.ruff.format]