-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (39 loc) · 1.01 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "setuptools-scm", "wheel"]
[project]
authors = [{ name = "Aaron Keesing", email = "[email protected]" }]
name = "simple-tracer"
description = "A simple tracer for Python 3.12+"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
]
license = { text = "MIT License" }
requires-python = ">=3.12"
readme = "README.md"
dynamic = ["version"]
[tool.setuptools_scm]
write_to = "simple_tracer/_version.py"
[project.optional-dependencies]
dev = [
"black==24.10.0",
"flake8==7.1.1",
"flake8-pyproject==1.2.3",
"isort==5.13.2",
"mypy==1.13.0",
"pre-commit==4.0.1",
]
[project.scripts]
simple-tracer = "simple_tracer.__main__:main"
[tool.black]
line-length = 120
target-version = ["py312"]
include = '(\.pyi?)$'
[tool.flake8]
max-line-length = 120
[tool.isort]
line_length = 120
profile = "black"